Join And Get Free Trial!

getTaskResult#


返回任务的结果。
结果格式取决于任务类型并在任务规范中进行描述。。

API 端点: https://api.nextcaptcha.com/getTaskResult

方法: POST

内容类型: application/json

请求属性#

名称类型必须使用的描述
clientKey字符串是的你的API密钥
taskId整数是的你的任务id

请求示例#

{
  "clientKey": "api key",
  "taskId": 1781234567890
}

响应示例#

处理中#

{
  "errorId": 0,
  "status": "processing"
}

任务处理失败#

{
  "errorId": 12,
  "errorCode": "ERROR_CAPTCHA_UNSOLVABLE",
  "errorDescription": "captcha could not be solved,because proxy is not allowed for this task"
}

任务已完成#

{
  "errorId": 0,
  "status": "ready",
  "solution": {
    "gRecaptchaResponse": "03AOLTBLR8z..."
  }
}