CAPTCHAFORUM
Administrator
The most popular Google captcha, also known as "I'm not a robot." Finding and marking pictures of the requested objects is critical to a solution.
reCAPTCHA is more user-friendly and provides more accurate bot identification. Stop dangerous bots and protect user privacy. Any publisher can use captcha for free. more control that necessitates top-tier security.
The process of solving reCAPTCHA V2 is as follows:
Send sitekey and pageurl to 2Captcha API. Wait for the result, which may look like this:
In developer's console, find textarea with id="g-recaptcha-response", and put there received code. Then, click the Check button.
Read more - captcha solving API dоcumentation.
reCAPTCHA is more user-friendly and provides more accurate bot identification. Stop dangerous bots and protect user privacy. Any publisher can use captcha for free. more control that necessitates top-tier security.
The process of solving reCAPTCHA V2 is as follows:
- Service take the captcha parameters from the page in the form of the data-sitekey parameter and the page URL and transfer it to the server, where the solves it
- Response is returned in the form of a token, which must be entered into the appropriate field for the captcha solving.
reCAPTCHA bypass API service
Open developer's console in your browser and find element with data-sitekey attribute.<div
class="g-recaptcha"
data-sitekey="6LfD3PIbAAAAAJs_eEHvoOl75_83eXSqpPSRFJ_u"
id="recaptcha"
></div>
Send sitekey and pageurl to 2Captcha API. Wait for the result, which may look like this:
03AGdBq27lvCYmKkaqDdxWLfMe3ovADGfGlSyiR-fN_EJrZGniTAmdH1XSjK8ralsctfjOLX2K0T7dJfxPqqga8dtSG2Lmns8Gk2ckcU6PQzUFieBqrtpkr5PPwnngew0Rnot2ik1y8m202u6pHTIquExlEYSlzS8vfoyPPt8fCf-Zrbu8vWkiY8Ogj17ommHMgkguZbmEyOdfLTXzhRko-a655_jJdCMjEtMxva-b78DnGlXu9d0o6vEmrw9n8ABu4lLsWnIbYPH0beXRRIkUE3si64Xhwkh1aO3L1HaIR3sfR0vOs3GV1OBzry_tFsZM0ZhSQovKJwjLlotrYajyTSRv3hgvXtLlLxXzbAwgeI91-wM7AFEte0uO_DhcNajxZr7E50wU9vuAe_drGWe4q-hNx4PQPenjaw
In developer's console, find textarea with id="g-recaptcha-response", and put there received code. Then, click the Check button.
Read more - captcha solving API dоcumentation.
// https://github.com/2captcha/2captcha-php
require(__DIR__ . '/../src/autoloader.php');
$solver = new \TwoCaptcha\TwoCaptcha('YOUR_API_KEY');
try {
$result = $solver->recaptcha([
'sitekey' => '6LfD3PIbAAAAAJs_eEHvoOl75_83eXSqpPSRFJ_u',
'url' => 'https://2captcha.com/demo/recaptcha-v2',
]);
} catch (\Exception $e) {
die($e->getMessage());
}
die('Captcha solved: ' . $result->code);