druidvav/antigate-client

Lightweight client for Antigate service

v1.0.2 2019-02-14 08:37 UTC

This package is auto-updated.

Last update: 2024-04-10 03:18:36 UTC


README

Usage examples

<?php
require_once 'vendor/autoload.php';

$client = new NekoWeb\AntigateClient();
$client->setApiKey('--YOUR-KEY--');

// Solve from file
file_put_contents('tmp.jpg', file_get_contents('--CAPTCHA-URL--'));
echo $client->recognizeByFilename('tmp.jpg');

// Solve from URL
echo $client->recognizeByUrl('--CAPTCHA-URL--');

// Return Antigate balance
echo $client->getBalance();

// Return your usage statistics for a date
print_r($client->getStatistic('2014-04-11'));

// Return realtime Antigate statistics
print_r($client->getRealtimeStatistic());