burakboz / streamango
Streamango Service Client Library
Installs: 155
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 31
pkg:composer/burakboz/streamango
Requires
- php: >=5.5.0
- guzzlehttp/guzzle: ~6.0
Requires (Dev)
- phpunit/phpunit: 4.3.*
This package is auto-updated.
Last update: 2020-10-22 06:12:20 UTC
README
It's just a php client of the streamango.com service.
Install
composer require burakboz/streamango:~1.0.1
Usage
All api features are implemented, from retrieve account info
<?php include_once './vendor/autoload.php'; use BurakBoz\streamango\streamangoClient; $openload = new streamangoClient('apiLogin', 'apiKey'); $accountInfo = $openload->getAccountInfo(); echo $accountInfo->getEmail(); //account@email.com
to upload a file
<?php include_once './vendor/autoload.php'; use BurakBoz\streamango\streamangoClient; $openload = new streamangoClient('apiLogin', 'apiKey'); $openload->uploadFile('/home/user/Pictures/image.jpg');
It's also possible find more about what you can to do at streamango API.
Author
Burak Boz
License
MIT
Info
Forked from Ideneal/OpenLoad