

सबसे अच्छा reCAPTCHA v3 सॉल्वर
reCAPTCHA v3 सॉल्वर
reCAPTCHA v3 क्या है?
बातचीत की आवश्यकता के बजाय, reCAPTCHA v3 वेबसाइट पर उपयोगकर्ता के व्यवहार के आधार पर अदृश्य रूप से जोखिम स्कोर की गणना करता है। यह एक स्कोर (0.0 से 1.0) प्रदान करता है; 1.0 एक इंसान का सुझाव देता है और 0.0 एक बॉट का।
reCAPTCHA v3 सॉल्वर के बारे में अधिक जानकारीreCAPTCHA v3 डेमो
reCAPTCHA v3 को कैसे हल करें - API गाइड
CapSolver की स्वचालित सेवा आपको reCAPTCHA v3 को आसानी से हल करने में मदद कर सकती है। हमारी सेवा CapSolver API और Chrome एक्सटेंशन के माध्यम से उपलब्ध है। कृपया सेवा का उपयोग करने के लिए CapSolver पर पंजीकरण करें।
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);
});
CapSolver SDK के साथ reCAPTCHA v3 हल करें
लोकप्रिय कैप्चा प्रकारों का समर्थन करता है
CapSolver के साथ आसानी से कैप्चा हल करें
हम अपने उत्पादों को आपके सिस्टम में एकीकृत करना जितना संभव हो उतना आसान बनाने का प्रयास करते हैं। बहु-भाषी समर्थन और कोड उदाहरणों के साथ, हम आपकी परियोजनाओं के लिए तेज़ शुरुआत सुनिश्चित करते हैं।


लोकप्रिय कैप्चा सॉल्विंग सेवाएं जिनका हम समर्थन करते हैं

reCAPTCHA v2 / v3
Cloudflare Challenge
AWS WAF
इमेज से टेक्स्ट
Cloudflare Turnstile
अधिक प्रकार
नियमों का अनुपालन सुनिश्चित करनासभी उपयोगकर्ताओं के लिए

हम नैतिकता के साथ प्रौद्योगिकी के उपयोग का समर्थन करते हैं और अवैध प्रथाओं का विरोध करते हैं। हम सार्वजनिक डेटा के जिम्मेदार संग्रह का समर्थन करते हैं। यदि आपको दुरुपयोग मिले, तो रिपोर्ट करें। हमने एक गोपनीयता केंद्र लॉन्च किया है जो डेटा अधिकारों पर उपकरण और जानकारी प्रदान करता है।

