VK Captcha, without custom bypass code.
即使 VK Captcha 更新其防护机制,这个可预测的三步流程也始终保持不变。
When a VK API request fails with a captcha error, send us the redirect_uri from that error response. We solve the challenge and return a success_token you attach to a retry of the original request.
提交目标
在一次 API 请求中发送页面 URL 和挑战特定字段。
我们处理挑战
CaptchaSolv 将任务路由到专门的解决方案,并跟踪直至完成。
使用解决方案
获取下一次请求所需的令牌、请求头、cookies 或 sensor payload。
所有支持的解决方案使用相同的接口和响应格式。
{
"api_key": "YOUR_API_KEY",
"type": "VkCaptcha",
"site_url": "https://vk.com/",
"data": {
"redirect_uri": "https://id.vk.com/not_robot_captcha?domain=vk.com&session_token=eyJ...&variant=popup&blank=1"}
}{
"errorId": 0,
"status": "ready",
"solvtime": 6.24,
"data": {
"useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)...",
"language": "en-US,en;q=0.9",
"solution": {
"token": "eyJhbGciOiJIUzI1NiJ9...kyAWZSNoJPw"}
}
}此验证码类型的求解请求中,可在 data 对象内发送的字段。
redirect_uri必填The full captcha URL returned in the error response of the VK API request that triggered the captcha, e.g. .../not_robot_captcha?domain=vk.com&session_token=....
任务解决后在 data.solution 中返回的字段。
solution.token必填The success_token to attach to a retry of the original VK API request.
data.useragent必填The user-agent used while solving - reuse it on the retried request.
关于正确集成此解决方案的常见问题。
Yes - it works for the captcha challenge returned on any VK API method that requires it, not just a fixed list of endpoints. Send the redirect_uri from the specific error response you received and we solve that session's challenge.
在绕过 VK Captcha 时遇到困难?
加入我们的 Discord,我们的团队会帮助您在您的环境中成功解决 VK Captcha - 提供免费建议,即使挑战随时间变化也能持续应对。
