|
|
Tarpipe.com PHP API
PHP Api implementation for tarpipe.com service.
NOTICE: At this moment only CURL is supported, no HTTP Support yet
Quick Usage
<?
require_once("lib/Tarpipe_PHP.php");
$key = "YOUR_WORKFLOW_KEY";
$client = new Tarpipe_PHP($key);
$title = "Playing with tarpipe.com PHP_API";
$image = "directory/someimage.jpg";
$body = "Some body on you message";
$client->upload($title,$body,$image);
?>
TODO
HTTP Support - http://code.google.com/p/tarpipe-php/issues/detail?id=1
