1

Check your credit

getcredit

GET https://tesseractor.com/api/v1/getcredit?login=&password=

loginYour identification code.
passwordYour password.
$ curl -D - -X GET "https://tesseractor.com/api/v1/getcredit?login=abcdef&password=ABCDEF"

Download the code of the sendget function defined in the file sendhttp.php. Copy the file in the space of your application.

NOTE: See the page Call the service API for a description of the sendget function.

Add the file getcredit.php with the following content:

  1. require_once 'sendhttp.php';

Loads the code of the sendget function provided by iZend.

  1. function getcredit($login, $password) {

Defines the function getcredit. $login is your identification code. $password is your password.

  1.     $curl = 'https://tesseractor.com/api/v1/getcredit' . '?' . 'login=' . urlencode($login) . '&' . 'password=' . urlencode($password);

Sets $curl to the URL of the getcredit action with the identification code and the password of the user's account. $login and $password must be escaped.

  1.     $response=sendget($curl);

Sends the HTTP request with sendget. The arguments login and password are already in $curl.

  1.     if (!$response or $response[0] != 200) {
  2.         return false;
  3.     }

If $response is false, the server is unreachable. If $response[0] doesn't contain the HTTP return code 200 Ok, an execution error has occurred. In case of error, getcredit returns false.

  1.     $r=json_decode($response[2], true);

Decodes the data returned in JSON.

  1.     if ($r['status'] == 'success') {
  2.         return ($r['data']['credit']);
  3.     }

Returns the number of credit units if the action has succeeded.

  1.     return false;
  2. }

Returns false in case of error.

EXAMPLE

Assuming you have saved the files sendhttp.php and getcredit.php in the current directory, run PHP in interactive mode, load the getcredit function and call it with your identification code and password in argument:

$ php -a
php > require_once 'getcredit.php';
php > echo getcredit('abcdef', 'ABCDEF');
10
php > quit

Click on the cart in the menu bar of your home page to buy credit units.

SEE ALSO

Call the service API

Comments

To add a comment, click here.