RecaptchaV2EnterpriseTaskProxyless: 프록시 없이 Google reCAPTCHA V2 엔터프라이즈 우회하기
해당 유형의 작업은 작업자의 IP 주소에서 Google reCAPTCHA 엔터프라이즈 V2를 풀기 위한 유형의 작업입니다.
RecaptchaV2TaskProxyless와 대부분 유사하지만, Enterprise API를 사용하여 작업을 해결하고 reCAPTCHA V3 점수가 가장 높은 작업자에게 작업을 할당한다는 점이 다릅니다.

Recaptcha V2 엔터프라이즈 예제. 겉보기에는 비엔터프라이즈 버전과 동일합니다.
Python
Node.js
PHP
Java
C#
bash
Python에서 Recaptcha V2 Enterprise을(를) 해결하는 방법
#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)
# user-agent in case you need it:
print("user-agent: "+solver.get_user_agent())
else:
print("task finished with error "+solver.error_code)작업 객체
| 속성 | 유형 | 필수 | 목적 |
|---|---|---|---|
| type | 문자열 | 예 | RecaptchaV2EnterpriseTaskProxyless |
| websiteURL | 문자열 | 예 | 대상 웹페이지 주소. 회원 영역을 포함하여 웹사이트의 어느 곳에나 위치할 수 있습니다. 당사의 작업자는 해당 페이지를 탐색하지는 않으나, 대신에 해당 페이지의 방문 시뮬레이션합니다. |
| websiteKey | 문자열 | 예 | reCAPTCHA 웹사이트 키. 해당 키를 찾는 방법의 경우, 해당 글을 참고하시기 바랍니다. |
| enterprisePayload | 객체 | 아니요 | sitekey와 함께 "grecaptcha.enterprise.render" 메서드에 전달될 수 있는 선택적 추가 매개변수입니다. 다음은 검색해 볼 수 있는 예시입니다: |
| apiDomain | 문자열 | 아니요 | 해당 매개변수를 사용하면 reCAPTCHA 스크립트가 제공되어야 하는 도메인 이름을 전송합니다. "www.google.com" 또는 "www.recaptcha.net"의 두 값 중 하나만 가질 수 있습니다. 수행 중인 작업을 제대로 파악하고 있지 못하는 경우에는 이 매개변수를 사용하지 마시기 바랍니다. |
작업 솔루션 객체
| 속성 | 유형 | 목적 |
|---|---|---|
| gRecaptchaResponse | 문자열 | 대상 웹사이트의 제출 양식과 상호작용하는 데 필요한 토큰 문자열. |
| userAgent | 문자열 | 작업자 브라우저의 사용자 에이전트. 응답 토큰을 제출할 때 사용합니다. |
응답 예제
{
"errorId":0,
"status":"ready",
"solution":
{
"gRecaptchaResponse":"3AHJ_VuvYIBNBW5yyv0zRYJ75VkOKvhKj9_xGBJKnQimF72rfoq3Iy-DyGHMwLAo6a3",
"userAgent":"Mozilla\5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/145.0.0.0 Safari\/537.36"
},
"cost":"0.001500",
"ip":"46.98.54.221",
"createTime":1472205564,
"endTime":1472205570,
"solveCount":"0"
}