문서 튜토리얼 로그인
지원되는 태스크 유형
API 메소드
기사
튜토리얼
GitHub
문서 메뉴

reportIncorrectHcaptcha: Hcaptcha 토큰에 대한 불만 사항 보내기

이 방법을 사용하여 대상 서비스에 전달되지 않은 토큰에 대한 정보를 보내주십시오. 환불은 보장되지 않지만 보고서를 보내면 시스템이 Hcaptcha 네트워크에서 금지된 작업자를 필터링하는 데 도움이 됩니다. 불만 사항은 Enterprise Hcaptcha를 포함하여 Hcaptcha에 대해서만 허용됩니다.

주소: https://api.anti-captcha.com/reportIncorrectHcaptcha
메소드: POST
Content-type: application-json

프로퍼티 요청

프로퍼티 유형 필수 목적
clientKey 스트링
taskId 정수

예시 요청

CURL
          curl -i -H "Accept: application/json" \
     -H "Content-Type: application/json" \
     -X POST -d '{
    "clientKey":"YOUR_API_KEY",
    "taskId":12345
}' https://api.anti-captcha.com/reportIncorrectHcaptcha
        


반응 구조

프로퍼티 유형 목적
errorId 정수 오류 식별자.
0 - 오류 없음. 성공적으로 작업을 완료했습니다.
>1 - 오류 식별자. errorCodeerrorDescription 프로퍼티에서 전송된 오류 코드 및 짧은 설명.
errorCode 스트링
errorDescription 스트링 오류에 대한 짧은 설명
status 스트링
작업 결과. 불만사항을 접수하면 오류 코드나 상태="성공" 메시지를 받게 됩니다.

반응 예시

JSON(오류 없음)
          {
    "errorId":0,
    "status":"success"
}
        
JSON(오류 있음)
          {
    "errorId": 16,
    "errorCode": "ERROR_NO_SUCH_CAPCHA_ID",
    "errorDescription": "Task you are requesting does not exist in your current task list or has been expired."
}