HCaptchaEnterpriseTask#
Bypass hCaptcha basato su token. Il metodo è molto simile a
reCAPTCHA V2 . Il token può essere utilizzato sul sito Web di destinazione all'interno del campo del modulo di risposta h-captcha o passato a una funzione di callback.
HCaptchaEnterpriseTask Struttura dell'oggetto attività#
nome tipo Necessario Descrizione type Corda SÌ HCaptchaEnterpriseTask
websiteURL Corda SÌ L'URL completo della pagina di destinazione in cui viene caricato il codice di verifica websiteKey Corda SÌ Chiave del sito Web hCaptcha. Può essere trovato nell'attributo "data-sitekey" dell'elemento div hCaptcha o nel parametro "sitekey" di una richiesta all'API hCaptcha isInvisible Booleano NO Funziona con la versione invisibile di hCaptcha: non verrà visualizzata alcuna casella di controllo ma verrà visualizzata la sfida. Tipicamente utilizzato con le funzioni di callback enterprisePayload Oggetto NO Un oggetto contenente parametri aggiuntivi, come: "rqdata". proxyType Corda SÌ Tipo proxy: `http`, `socks4`, `socks5` proxyAddress Corda SÌ Indirizzo IP o nome host del server proxy proxyPort Intero SÌ porta proxy proxyLogin Corda NO Accesso dell'agente proxyPassword Corda NO Password dell'agente
Richiedi esempio#
Punto finale dell'API: https://api.nextcaptcha.com/createTask
metodo: POST
Tipo di contenuto: application/json
{
"clientKey" : "api key" ,
"task" : {
"type" : "HCaptchaEnterpriseTask" ,
"websiteURL" : "https://hcaptcha.com/demo/hcaptcha" ,
"websiteKey" : "f7de0da3-3303-44e8-ab48-fa32ff8ccc7b" ,
"isInvisible" : false ,
"enterprisePayload" : {
"rqdata" : "eyJ0eXAi"
},
"proxyType" : "http" ,
"proxyAddress" : "your_proxy_address" ,
"proxyPort" : 1234 ,
"proxyLogin" : "your_proxy_login" ,
"proxyPassword" : "your_proxy_password"
}
}
Esempio di risposta#
{
"errorId" : 0 ,
"status" : "ready" ,
"solution" : {
"respKey" : "E0_eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9" ,
"userAgent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299" ,
"gRecaptchaResponse" : "P1_eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9"
},
"createTime" : 1701234567890 ,
"endTime" : 1701234567890
}
Codice di esempio#
# https://github.com/nextcaptcha/nextcaptcha-python
import os
import sys
from nextcaptcha import NextCaptchaAPI
client_key = os.getenv( 'NEXTCAPTCHA_KEY' , "YOUR_CLIENT_KEY" )
api = NextCaptchaAPI( client_key = client_key)
try :
result = api.hcaptcha_enterprise( website_url = "https://example.com" , website_key = "SITE_KEY" )
except Exception as e:
sys.exit(e)
else :
sys.exit( 'solved: ' + str (result))
// https://github.com/nextcaptcha/nextcaptcha-go
package main
import (
" fmt "
" log "
" github.com/nextcaptcha/nextcaptcha-go "
)
func main () {
api := nextcaptcha. NewNextCaptchaAPI ( "API_KEY" )
result, err := api. HCaptchaEnterprise ( "https://example.com" , "SITE_KEY" , nextcaptcha . RecaptchaV3Options {})
if err != nil {
log. Fatal (err);
}
fmt. Println ( "result " + result)
}
// https://github.com/nextcaptcha/nextcaptcha-csharp
string clientKey = "YOUR_CLIENT_KEY" ;
string solftId = "" ; // Optional
string callbackUrl = "" ; // Optional
bool openLog = true ; // Optional
var nextCaptchaAPI = new NextCaptchaAPI (clientKey, solftId, callbackUrl, openLog);
string websiteUrl = "https://example.com" ;
string websiteKey = "YOUR_WEBSITE_KEY" ;
Dictionary < string , object > enterprisePayload = null ; // Optional
bool isInvisible = false ; // Optional
string proxyType = "" ; // Optional
string proxyAddress = "" ; // Optional
int proxyPort = 0 ; // Optional
string proxyLogin = "" ; // Optional
string proxyPassword = "" ; // Optional
var result = await nextCaptchaAPI. SolveHCaptchaEnterpriseAsync (websiteUrl, websiteKey, enterprisePayload, isInvisible, proxyType, proxyAddress, proxyPort, proxyLogin, proxyPassword);
Link correlati#