From aa302bdb580d36bdb886d413370c1f5b05a541d2 Mon Sep 17 00:00:00 2001 From: Franklin-F Date: Sat, 31 May 2025 05:40:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9reCAPTCHA=E5=93=8D?= =?UTF-8?q?=E5=BA=94=E5=A4=84=E7=90=86=E4=BB=A5=E8=BF=94=E5=9B=9EgRecaptch?= =?UTF-8?q?aResponse=E4=BB=A3=E6=9B=BFtoken?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- onoe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onoe.py b/onoe.py index d1cd3e2..76565ab 100644 --- a/onoe.py +++ b/onoe.py @@ -287,7 +287,7 @@ def solve_recaptcha_v3_with_proxy( result = r.json() logger.info(f"第{i}次,task_id:{task_id},结果:{result}") if result.get("status") == "ready": - return result["solution"]["token"] + return result["solution"]["gRecaptchaResponse"] time.sleep(polling_interval) # raise TimeoutError(f"任务 {task_id} 在轮询 {max_poll_attempts} 次后未完成")