Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

请求节点: 国际节点 https://api.ez-captcha.com 国内节点 https://api.ez-captcha.com

请求地址: https://api.ez-captcha/getTaskResult

请求格式:POST application/json

每个任务创建后 5 分钟内可以查询

 

请求参数

参数

类型

必须

说明

clientKey

string

帐户密钥,可以在个人中心找到

taskId

string

通过 createTask 方法创建得到的 ID

 

请求示例

POST https://api.ez-captcha.com/getTaskResult
Host: ez-captcha.com
Content-Type: application/json
 
{
    "clientKey":"YOUR_API_KEY",
    "taskId": "TASKID OF CREATETASK" //由createTask方法创建的ID
}

 

响应数据

参数

类型

说明

errorId

Integer

错误提示: 0 - 没有错误,1 - 有错误

errorCode

string

错误代码

errorDescription

string

错误详细描述

status

String

processing - 正在识别中
ready - 识别完成,在solution参数中找到结果

solution

Object

识别结果,不同类型的任务结果会有所区别。

 

响应示例

{
    "errorId": 0,
    "errorCode": null,
    "errorDescription": null,
    "solution": {
        "gRecaptchaResponse": "03AGdBq25SxXT-pmSeBXjzScW-EiocHwwpwqtk1QXlJnGnUJCZrgjwLLdt7cb0..."
    },
    "status": "ready"
}

  • No labels