Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 369 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 369 Bytes

Readme

Install Dependencies:

$ sudo pear install channel://pear.php.net/Net_URL2-0.3.1
$ sudo pear install channel://pear.php.net/HTTP_Request2-2.0.0RC1

Usage Example:

<?php
	require_once('phpcclib.php');
	$api = new Api();
	$email = '[email protected]';
	$password = '$3cr3t';
	$api->auth($email, $password);
?>