burakboz/streamango

This package is abandoned and no longer maintained. No replacement package was suggested.

Streamango Service Client Library

v1.0.1 2017-08-08 12:08 UTC

This package is auto-updated.

Last update: 2020-10-22 06:12:20 UTC


README

Packagist GitHub license Travis branch

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