Bypassa Google Recaptcha V2 Enterprise senza proxy
Questo tipo di attività è per risolvere Google Recaptcha Enterprise V2 dall'indirizzo IP dell'operatore.
È perlopiù simile a RecaptchaV2TaskProxyless, tranne per il fatto che le attività vengono risolte usando l'Enterprise API e assegnate agli operatori con il miglior punteggio Recaptcha V3.
Esempio Recaptcha V2 Enterprise. Dal punto di vista visivo è identico alla versione non-enterprise.
Oggetto attività
Proprietà | Tipo | Richiesto | Scopo |
---|---|---|---|
type | Stringa | Sì | RecaptchaV2EnterpriseTaskProxyless |
websiteURL | Stringa | Sì | Indirizzo di una pagina web target. Può trovarsi in qualsiasi punto del sito web, anche nell'area riservata. I nostri operatori non navigano in quest'area, ma simulano la visita. |
websiteKey | Stringa | Sì | Chiave del sito Recaptcha. Scopri come trovarlo in questo articolo. |
enterprisePayload | Oggetto | No | Parametri aggiuntivi che dovrebbero essere passati al metodo "grecaptcha.enterprise.render" insieme alla chiave del sito. Esempio di cosa dovresti cercare: grecaptcha.enterprise.render("some-div-id", {
sitekey: "6Lc_aCMTAAAAABx7u2N0D1XnVbI_v6ZdbM6rYf16",
theme: "dark",
s: "2JvUXHNTnZl1Jb6WEvbDyBMzrMTR7oQ78QRhBcG07rk9bpaAaE0LRq1ZeP5NYa0N...ugQA"
}); |
apiDomain | Stringa | No | Usa questo parametro per inviare il nome del dominio dal quale lo script Recaptcha dovrebbe essere servito. Può avere solo uno dei due valori: "www.google.com" o "www.recaptcha.net". Non usare questo parametro a meno che tu sappia ciò che stai facendo. |
Richiedi esempio
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)
Oggetto soluzione attività
Proprietà | Tipo | Scopo |
---|---|---|
gRecaptchaResponse | Stringa | Stringa token richiesta per interagire con l'evento submit sul sito web target. |
Esempio di risposta
{
"errorId":0,
"status":"ready",
"solution":
{
"gRecaptchaResponse":"3AHJ_VuvYIBNBW5yyv0zRYJ75VkOKvhKj9_xGBJKnQimF72rfoq3Iy-DyGHMwLAo6a3"
},
"cost":"0.001500",
"ip":"46.98.54.221",
"createTime":1472205564,
"endTime":1472205570,
"solveCount":"0"
}