topmcfrance/api-client

TopMcFrance Api client for PHP

v1.0.1 2016-09-12 21:30 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:08:10 UTC


README

Check a code to vote on the site of TopMcFrance before giving a reward for his vote.

Build Status Scrutinizer Code Quality Code Coverage StyleCI

For each vote on the site TopMcFrance with enabled API.
The site generates a verification code to enter the site. This class allows check TopMcFrance about the validity of a code.

Each generated code is unique to the server and can only be used one time.

The Api is currently on developement.

Installation by composer

Add into you composer.json :

"topmcfrance/api-client": "^1.0"

Installation by autoload

If you haven't composer, you can include the autoload.php into you webpage

require_once "topmcfrance-api/autoload.php";

Usage

use TopMcFrance\Api\VoteChecker;
use TopMcFrance\Api\ApiException;

$serverId = 1; // Your server Id
$code = '123456789' // Code take by our user after voting;

$voteChecker = new VoteChecker($serverId);

try{
	$voteChecker->checkCode($code);
	// vote confirmed, you can give so many diamond !
} catch(ApiException $e){
	$error = $e->getApiMessage();
	// error in check, see ApiException for more option
}