请求节点:
Status | ||||
---|---|---|---|---|
|
https://api.ez-captcha.com
colour | Green |
---|---|
title | 国内节点 |
Request api: https://api.ez-captcha.com
请求地址: https://api.ez-captcha/getTaskResult
请求格式:Request format: POST
application/json
每个任务创建后 5
分钟内可以查询
请求参数
...
参数
...
类型
...
必须
...
Result token can be queried within 5 minutes after each task is created
Request Parameters
Parameters | Type | Required | Description |
---|---|---|---|
clientKey | string |
是
true | Account client key, which can be found in the personal center |
taskId | string |
是
通过 createTask 方法创建得到的 ID
...
true | The task ID created by the createTask method |
Request Example
Code Block |
---|
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 ID created by createTask method } |
...
Response Data
...
Parameters |
---|
Type |
---|
类型
Description | |
---|---|
errorId | Integer |
Error message: 0 - |
no error, 1 - error | |
errorCode | string |
Error Code | |
errorDescription | string |
Detailed error description | ||
status | String | processing - |
task is in progress ready - |
task is complete, the result is found in the solution parameter | |
solution | Object |
识别结果,不同类型的任务结果会有所区别。
...
Task results, different types of task results will be different. |
Response Example
Code Block |
---|
{ "errorId": 0, "errorCode": null, "errorDescription": null, "solution": { "gRecaptchaResponse": "03AGdBq25SxXT-pmSeBXjzScW-EiocHwwpwqtk1QXlJnGnUJCZrgjwLLdt7cb0..." }, "status": "ready" } |
...