Skip to content

Just a php client for the OpenLoad.co service

License

Notifications You must be signed in to change notification settings

rossanmol/OpenLoad

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenLoad

Packagist GitHub license Travis branch Codacy branch

It's just a php client of the OpenLoad.co service.

Install

composer require ideneal/openload:~1.0

Usage

All api features are implemented, from retrieve account info

<?php

include_once './vendor/autoload.php';

use Ideneal\OpenLoad\OpenLoadClient;

$openload = new OpenLoadClient('apiLogin', 'apiKey');

$accountInfo = $openload->getAccountInfo();
echo $accountInfo->getEmail(); //account@email.com

to upload a file

<?php

include_once './vendor/autoload.php';

use Ideneal\OpenLoad\OpenLoadClient;

$openload = new OpenLoadClient('apiLogin', 'apiKey');

$openload->uploadFile('/home/user/Pictures/image.jpg');

It's also possible find more about what you can to do at OpenLoad Api.

Author

Daniele Pedone

License

MIT

About

Just a php client for the OpenLoad.co service

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%