mirror of
https://github.com/GrandDuke1106/MCBBSAutoSignIn.git
synced 2024-11-17 01:36:25 -05:00
25 lines
584 B
PHP
25 lines
584 B
PHP
<?php
|
|
|
|
set_time_limit(130);
|
|
|
|
require(__DIR__ . '/../src/autoloader.php');
|
|
|
|
$solver = new \TwoCaptcha\TwoCaptcha('YOUR_API_KEY');
|
|
|
|
try {
|
|
$result = $solver->grid([
|
|
'file' => __DIR__ . '/images/grid_2.jpg',
|
|
'rows' => 3,
|
|
'cols' => 3,
|
|
'previousId' => 0,
|
|
'canSkip' => 0,
|
|
'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);
|