/PHP-Appcelerator

A simple port of the Appcelerator ACS Javascript SDK to PHP

Primary LanguagePHP

#Appcelerator ACS PHP SDK
This is a port of the Javascript SDK to PHP

##Usage Simply instantiate the library and call the API

// Get a user's statuses
$app_key  = '123';
$email    = 'ben.edmunds@gmail.com';
$password = '12345678';

$appcelerator = new Appcelerator($app_key, $email, $password);

$data = array(
	'where' => json_encode(array('user_id' => '4f9eb57a0020440def0056d3')),	
);

$output = $appcelerator->send_request('statuses/query.json', 'GET', $data);

print_r($output);
exit;


//create a new status
$app_key  = '123';
$email    = 'ben.edmunds@gmail.com';
$password = '12345678';

$appcelerator = new Appcelerator($app_key, $email, $password);

$data = array(
	'message' => 'api test message',	
);

$output = $appcelerator->send_request('statuses/create.json', 'POST', $data);
	
print_r($output);
exit;

See the Appcelerator documentation for API details.

Class created by Ben Edmunds and Shealan Foreshaw for Swipe & Tap.