Skip to content
This repository was archived by the owner on Sep 17, 2023. It is now read-only.

relbit/bitfront-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

evia PHP SDK

ver 1.0

evia PHP SDK can be used as a standalone application in CLI.
$ php evia.php -h
bitfront-API CLI
SYNTAX:
	evia.php OPTIONS METHOD [PARAMS]
USAGE EXAMPLE:
	php evia.php -e=account@prg0.relbitapp.com --password=topsecret -u=https://api.prg0.relbitapp.com getApps
php evia.php -e=account@prg0.relbitapp.com --password=topsecret -u=https://api.prg0.relbitapp.com addApp test_app

OPTIONS: -h, --help Prints this help -e, --email API login email -p, --password API password -u, --url API base url

As well as it can be used in any PHP application as a library.

<?php
	require 'evia.php';
	
	$evia = new Evia('account@prg0.relbitapp.com', 'topsecret', 'https://api.prg0.relbitapp.com');

	// if you encounter SSL verification error, please disable SSL. Some Linux distributions do not support RapidSSL
	$evia->disableVerification();

	// print all apps from my account
	$apps = $evia->getApps();
	foreach ($apps as $app) {
		print_r($app);
	}

	
?>

For more information about API and documentation look inside evia.php and visit docs.eviaproject.org - bitfront - API Documentation

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages