StreaMango
, (*1)
It's just a php client of the streamango.com service., (*2)
Install
composer require burakboz/streamango:~1.0.1
Usage
All api features are implemented, from retrieve account info, (*3)
<?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, (*4)
<?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., (*5)
Author
Burak Boz, (*6)
License
MIT, (*7)
Info
Forked from Ideneal/OpenLoad, (*8)