

Trình giải reCAPTCHA v3 tốt nhất
Trình giải reCAPTCHA v3
reCAPTCHA v3 là gì?
Thay vì yêu cầu tương tác, reCAPTCHA v3 tính toán điểm rủi ro dựa trên hành vi của người dùng trên trang web một cách ẩn danh. Nó cung cấp cho chủ sở hữu trang web một số điểm (từ 0.0 đến 1.0) cho biết mức độ đáng ngờ của hoạt động người dùng; 1.0 cho thấy là con người và 0.0 cho thấy là bot.
Thông tin thêm về trình giải reCAPTCHA v3Bản demo reCAPTCHA v3
Cách giải reCAPTCHA v3 - Hướng dẫn API
Dịch vụ giải CAPTCHA tự động của CapSolver có thể giúp bạn giải quyết reCAPTCHA v3 dễ dàng. Dịch vụ của chúng tôi có sẵn thông qua CapSolver API và Tiện ích Chrome. Vui lòng đăng ký trên CapSolver để sử dụng dịch vụ CAPTCHA.
ReCaptchaV3Task
ReCaptchaV3Task is a task type that requires your own proxies to work. It's ideal for those who have a pool of reliable proxies at their disposal. The usage of personal proxies allows for greater control and customization over the solving process.
python
# pip install --upgrade capsolver
# export CAPSOLVER_API_KEY='...'
import capsolver
# capsolver.api_key = "..."
solution = capsolver.solve({
"type": "ReCaptchaV3Task",
"websiteURL": "https://www.google.com/recaptcha/api2/demo",
"websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_kl-",
"proxy":"ip:port:user:pass", ...
})
ReCaptchaV3TaskProxyLess
If you don't have access to proxies or prefer not to use them, ReCaptchaV3TaskProxyLess is a perfect choice. It leverages the server's built-in proxy, making the process more streamlined and user-friendly.
python
# pip install --upgrade capsolver
# export CAPSOLVER_API_KEY='...'
import capsolver
# capsolver.api_key = "..."
solution = capsolver.solve({
"type": "ReCaptchaV3TaskProxyLess",
"websiteURL": "https://www.google.com/recaptcha/api2/demo",
"websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_kl-", ...
})
Step 1 : Creating a Task
To start the process, you need to create a recognition task using the createTask method.
Here's an example request:
json
POST https://api.capsolver.com/createTask
{
"clientKey":"YOUR_API_KEY",
"task": {
"type":"ReCaptchaV3Task",
"websiteURL":"https://antcpt.com/score_detector",
"websiteKey":"6LcR_okUAAAAAPYrPe-HK_0RULO1aZM15ENyM-Mf",
"pageAction": "homepage",
"proxy":"yourproxy"
}
}
Once the task is successfully submitted, you'll receive a Task ID in the response:
json
{
"errorId": 0,
"errorCode": "",
"errorDescription": "",
"taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006"
}
Step 2 : Getting Results
Once you have the Task ID, you can use it to retrieve the solution. Submit the Task ID with the getTaskResult method. The results should be ready within an interval of 1s to 10s.
Here's an example request:
json
POST https://api.capsolver.com/getTaskResult
Host: api.capsolver.com
Content-Type: application/json
{
"clientKey":"YOUR_API_KEY",
"taskId": "TASKID OF CREATETASK" //ID created by the createTask method
}
The response will include the solution token:
json
{
"errorId": 0,
"errorCode": null,
"errorDescription": null,
"solution": {
"userAgent": "xxx",
"expireTime": 1671615324290,
"gRecaptchaResponse": "3AHJ....."
},
"status": "ready"
}
In the response, 'solution' contains the 'userAgent', the expiration time of the token 'expireTime', and the solution token 'gRecaptchaResponse'. After the captcha has been solved, you can check the captcha token by sending the token to the site, example:
js
var request = require('request');
var options = {
method: 'POST',
url: 'https://antcpt.com/score_detector/verify.php',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ 'g-recaptcha-response': 'here the token of capsolver' }),
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
Giải quyết reCAPTCHA v3 với CapSolver SDK
Hỗ trợ các loại CAPTCHA phổ biến
Giải quyết CAPTCHA dễ dàng với CapSolver
Chúng tôi nỗ lực làm cho việc tích hợp các sản phẩm của mình vào cơ sở hạ tầng của bạn trở nên dễ dàng nhất có thể. Với hỗ trợ đa ngôn ngữ và các ví dụ mã có sẵn, chúng tôi đảm bảo khởi đầu nhanh chóng cho các dự án web của bạn.


Các dịch vụ giải CAPTCHA phổ biến mà chúng tôi hỗ trợ

reCAPTCHA v2 / v3
Cloudflare Challenge
AWS WAF
Hình ảnh sang Văn bản
Cloudflare Turnstile
Thêm nhiều loại
Đảm bảo tuân thủ các quy địnhDành cho tất cả người dùng

Chúng tôi ủng hộ việc sử dụng công nghệ một cách đạo đức để thúc đẩy phúc lợi con người và kiên quyết phản đối các hành vi bất hợp pháp hoặc lạm dụng giải pháp của chúng tôi. Chúng tôi lên án nghiêm khắc việc thu thập dữ liệu nhạy cảm trái phép, đồng thời ủng hộ việc tổng hợp dữ liệu công khai có trách nhiệm. Nếu bạn phát hiện lạm dụng nền tảng, vui lòng báo cáo. Để củng cố niềm tin, chúng tôi đã ra mắt trung tâm quyền riêng tư chuyên biệt cung cấp công cụ và kiến thức về quyền dữ liệu.

