A Guzzle client for Encoding.com's XML API . (Note : Not offical)
Install using composer
{
"require" : "svilborg/guzzle-encoding-com"
}
- PHP Version >=5.3.2.
- PHP Guzzle Library
- Requires a API Key and User ID from Encoding.com
- See also the API documentation
use Gencoding\Guzzle\Encoding\EncodingClient;
$client = EncodingClient::factory(array(
'userid' => '12345',
'userkey' => 'X1Y2Z3A4B5C6'));
$command = $client->getCommand('GetMediaInfo', array(
"mediaid" => 8888888888
));
try {
$result = $command->getResult();
$resultObject = $result->getXmlElement();
} catch (\Exception $e) {
// Catch Errors
}
First, install PHPUnit with composer.phar install --dev
, then run
./vendor/bin/phpunit
.