mirror of
https://github.com/GrandDuke1106/MCBBSAutoSignIn.git
synced 2024-11-19 10:46:11 -05:00
20 lines
431 B
PHP
20 lines
431 B
PHP
<?php
|
|
|
|
set_time_limit(610);
|
|
|
|
require(__DIR__ . '/../src/autoloader.php');
|
|
|
|
$solver = new \TwoCaptcha\TwoCaptcha('YOUR_API_KEY');
|
|
|
|
try {
|
|
$result = $solver->recaptcha([
|
|
'sitekey' => '6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-',
|
|
'url' => 'https://mysite.com/page/with/recaptcha',
|
|
'version' => 'v3',
|
|
]);
|
|
} catch (\Exception $e) {
|
|
die($e->getMessage());
|
|
}
|
|
|
|
die('Captcha solved: ' . $result->code);
|