Menu

reportIncorrectHcaptcha: 发送关于Hcaptcha标记的投诉

使用此方法向我们发送有关未通过目标服务的令牌的信息。我们不保证退款,但发送报告有助于系统筛选出在 Hcaptcha 网络中被禁止的工作者。投诉只针对 Hcaptcha,包括企业 Hcaptcha。

地址: https://api.anti-captcha.com/reportIncorrectHcaptcha
方法: POST
Content-type: application-json

请求属性

属性类型必须使用用途
clientKey字符串
taskId整数

请求示例

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 - 无错误,操作成功完成。
>0 - 错误标识符。错误代码及其简短描述可在 errorCodeerrorDescription 属性中找到。
errorCode字符串
errorDescription字符串简短错误说明
status字符串操作结果。接受投诉时,要么收到错误代码,要么收到 status="成功"。

回应示例

JSON 没有错误
JSON 有错误
{
    "errorId":0,
    "status":"success"
}