A PHP wrapper for the Spark REST API. This version has enough differences from version 1 that upgrading will require changes to existing code.
For additional information on the PHP client, visit the wiki.
For full information on the API, see http://sparkplatform.com/docs
// include the Spark core which autoloads other classes as necessary
require_once("lib/Core.php");
// connect using Access Token Authentication (additional authentication methods available in the wiki)
$api = new SparkAPI_Bearer("your_access_token_here");
// identify your application (optional)
$api->SetApplicationName("MyPHPApplication/1.0");
// get your listings
$result = $api->GetMyListings();
/*
Alternatively, if you cannot find the appropriate helper method,
try our "get", "post", "put", or "delete" methods from Core.php.
*/
$result = $api->get("my/listings");
// see the included examples.php for more complete usage
A list of all API error codes can be found here.