reCAPTCHA v3, without custom bypass code.
即使 reCAPTCHA v3 更新其防护机制,这个可预测的三步流程也始终保持不变。
Send the site key and the page_action your target page passes to execute(). We return a token plus the matching _GRECAPTCHA cookie and browser fingerprint, so follow-up requests stay consistent.
提交目标
在一次 API 请求中发送页面 URL 和挑战特定字段。
我们处理挑战
CaptchaSolv 将任务路由到专门的解决方案,并跟踪直至完成。
使用解决方案
获取下一次请求所需的令牌、请求头、cookies 或 sensor payload。
所有支持的解决方案使用相同的接口和响应格式。
{
"api_key": "YOUR_API_KEY",
"type": "RecaptchaV3",
"site_url": "https://example.com/contact",
"data": {
"site_key": "6LcXXXXXXXXXXXXXXXXXXXXXX",
"page_action": "contact_submit"}
}{
"errorId": 0,
"status": "ready",
"solvtime": 1.38,
"data": {
"useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)...",
"language": "en-US,en;q=0.9",
"solution": {
"token": "03AGdBq25SqKmv...",
"cookie": "_GRECAPTCHA=09AKhCRw..."}
}
}此验证码类型的求解请求中,可在 data 对象内发送的字段。
site_key必填The reCAPTCHA site key from the target page.
page_action可选The action string passed to execute(), e.g. "submit" or "homepage". Should match the page.
cookie可选An existing _GRECAPTCHA cookie value to seed the solver session for cookie continuity across solves.
任务解决后在 data.solution 中返回的字段。
solution.token必填The reCAPTCHA token to submit to the target site.
solution.cookie可选Updated _GRECAPTCHA cookie from the solve session - send it with the token in follow-up requests.
关于正确集成此解决方案的常见问题。
Yes - it works on any site running reCAPTCHA v3 or reCAPTCHA v3 Enterprise, not just a fixed list of targets. Send the site key and page_action from the page you're hitting and we solve that site's specific challenge.
在绕过 reCAPTCHA v3 时遇到困难?
加入我们的 Discord,我们的团队会帮助您在您的环境中成功解决 reCAPTCHA v3 - 提供免费建议,即使挑战随时间变化也能持续应对。
