Menu

구글 엔터프라이즈 V3를 푸세요.

V3 엔터프라이즈는 V3 논엔터프라이즈와 비교했을 때 큰 차이점이 없기 때문에, 저희는 일반 V3 태스크 내에서 지원하지 않기로 결정했습니다.

V3 Enterprise와 V3 비 엔터프라이즈의 차이점:

  • 위젯 코드는 "enterprise.js"(vs. "api.js")를 통해 로드됩니다.
  • 사용자 점수 검색은 "grecaptcha.enterprise.execute" 호출로 이루어집니다(대 "grecaptcha.execute").

그러므로 엔터프라이즈 V3 태스크를 플래그 지정하려면, "isEnterprise": true to your 논엔터프라이즈 V3 payload: 플래그를 추가하셔야 합니다.

예시 요청

Python
Javascript
PHP
Java
C#
bash
#pip3 install anticaptchaofficial

from anticaptchaofficial.recaptchav3enterpriseproxyless import *

solver = recaptchaV3EnterpriseProxyless()
solver.set_verbose(1)
solver.set_key("YOUR_API_KEY_HERE")
solver.set_website_url("https://website.com")
solver.set_website_key("SITE_KEY")
solver.set_page_action("home_page")
solver.set_min_score(0.9)

# 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"
}