RecaptchaV2EnterpriseTaskProxyless:プロキシなしでGoogle RecaptchaV2 Enterprise をバイパスする
このタイプのタスクは、作業員の IPアドレスからGoogle Recaptcha V2 Enterprise を解決する場合に使用します。
RecaptchaV2TaskProxylessとほぼ同じですが、タスクはEnterprise APIを使って解決され、Recaptcha V3のスコアが最も良い作業員に割り当てられます。
RecaptchaV2Enterpriseの例です。見た目では、non-Enterprise バージョンと同じです。
タスクオブジェクト
プロパティ | タイプ | 必須 | 目的 |
---|---|---|---|
type | 文字列 | はい | RecaptchaV2EnterpriseTaskProxyless |
websiteURL | 文字列 | はい | ターゲットページのアドレス。ユーザーエリアでも、ウェブサイトのどこにでも挿入できます。作業員は実際にアクセスしませんがアクセスをシミュレートします。 |
websiteKey | 文字列 | はい | Recaptcha のウェブサイトキーです。 検索方法について この記事をご覧下さい。 |
enterprisePayload | オブジェクト | いいえ | サイトキーと共に 「grecaptcha.enterprise.render」 メソッドに渡す必要がある追加のパラメーター。以下は検索対象の例です: grecaptcha.enterprise.render("some-div-id", {
sitekey: "6Lc_aCMTAAAAABx7u2N0D1XnVbI_v6ZdbM6rYf16",
theme: "dark",
s: "2JvUXHNTnZl1Jb6WEvbDyBMzrMTR7oQ78QRhBcG07rk9bpaAaE0LRq1ZeP5NYa0N...ugQA"
}); |
apiDomain | 文字列 | いいえ | このパラメーターを使用して、Recaptchaスクリプトの提供元となるドメイン名を送信します。 値は「www.google.com」 と 「www.recaptcha.net」のいずれかです。何をしているかを理解していない限り、このパラメーターを使用しないでください。 |
リクエスト例
Python
Javascript
PHP
Java
C#
bash
#pip3 install anticaptchaofficial
from anticaptchaofficial.recaptchav2enterpriseproxyless import *
solver = recaptchaV2EnterpriseProxyless()
solver.set_verbose(1)
solver.set_key("YOUR_API_KEY_HERE")
solver.set_website_url("https://website.com")
solver.set_website_key("YOUR_API_KEY_HERE")
# solver.set_enterprise_payload({"s": "sometoken"})
# Specify softId to earn 10% commission with your app.
# Get your softId here: https://anti-captcha.com/clients/tools/devcenter
solver.set_soft_id(0)
g_response = solver.solve_and_return_solution()
if g_response != 0:
print("g-response: "+g_response)
else:
print("task finished with error "+solver.error_code)
タスクソリューションオブジェクト
プロパティ | タイプ | 目的 |
---|---|---|
gRecaptchaResponse | 文字列 | ターゲットウェブサイトで送信フォームでやり取りするために必要なトークン文字列です。 |
レスポンス例
{
"errorId":0,
"status":"ready",
"solution":
{
"gRecaptchaResponse":"3AHJ_VuvYIBNBW5yyv0zRYJ75VkOKvhKj9_xGBJKnQimF72rfoq3Iy-DyGHMwLAo6a3"
},
"cost":"0.001500",
"ip":"46.98.54.221",
"createTime":1472205564,
"endTime":1472205570,
"solveCount":"0"
}