MCBBSAutoSignIn/2captcha-php/examples/coordinates_options.php
jie Ago 39db30c13e .
2022-11-05 23:51:39 +08:00

21 lines
474 B
PHP

<?php
set_time_limit(130);
require(__DIR__ . '/../src/autoloader.php');
$solver = new \TwoCaptcha\TwoCaptcha('YOUR_API_KEY');
try {
$result = $solver->coordinates([
'file' => __DIR__ . '/images/grid_2.jpg',
'lang' => 'en',
// 'hintImg' => __DIR__ . '/images/grid_hint.jpg'
'hintText' => 'Select all images with an Orange',
]);
} catch (\Exception $e) {
die($e->getMessage());
}
die('Captcha solved: ' . $result->code);