

最高のreCAPTCHA v3ソルバー
reCAPTCHA v3 CAPTCHA ソルバー
reCAPTCHA v3とは
ユーザーの操作を必要とする代わりに、reCAPTCHA v3はウェブサイト上での動作に基づいて、バックグラウンドでユーザーのリスクスコアを算出します。ウェブサイトの所有者にスコア(0.0〜1.0)を提供し、ユーザーの行動がどの程度疑わしいかを示します。1.0は人間である可能性が非常に高く、0.0はボットである可能性が非常に高いことを意味します。
reCAPTCHA v3ソルバーの詳細情報reCAPTCHA v3 デモ
reCAPTCHA v3の解決方法 - APIガイド
CapSolverの自動CAPTCHA解決サービスは、reCAPTCHA v3を簡単に解決できます。当社のサービスは、CapSolver API およびChromeの 拡張機能 を通じて利用可能です。CapSolverに 登録 して、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);
});
CapSolver SDKを使用したreCAPTCHA v3の解決
人気のCAPTCHAをサポート
CapSolverを使用して簡単にCAPTCHAを解決
当社の製品をインフラに統合することが可能な限り簡単になるように努めています。多言語サポートとすぐに使えるコード例により、Webプロジェクトの迅速かつ簡単な開始を保証します。


サポートしている主なCAPTCHA解決サービス

reCAPTCHA v2 / v3
Cloudflare Challenge
AWS WAF
画像からテキストへ
Cloudflare Turnstile
その他のタイプ
コンプライアンス規制の遵守を保証すべてのユーザーへ

私たちは、人類の幸福を促進するためのテクノロジーの倫理的利用を支持し、違法な慣行や当社のソリューションの不適切な使用に断固として反対します。私たちは、適切な同意なしに機密データを不法に収集することを厳しく非難する一方で、人間の存在を豊かにするための公開データの責任ある集約を提唱します。当社のプラットフォームを悪用している個人に遭遇した場合は、そのような不正行為を報告することをお勧めします。信頼を高め、ユーザーにより大きな自律性と知識を提供するために、データ権利に関する強化されたツールとインサイトを個人に提供する専用のプライバシーハブを開設しました。

