获取结果
POST
https://api.ez-captcha.com/getTaskResult
请求参数
Body 参数application/json
clientKey
string
clientKey
taskId
string
必需
示例
{
"clientKey": "YOUR_API_KEY",
"taskId": "TASKID OF CREATETASK"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.ez-captcha.com/getTaskResult' \
--header 'Content-Type: application/json' \
--data-raw '{
"clientKey": "YOUR_API_KEY",
"taskId": "TASKID OF CREATETASK"
}'
返回响应
🟢200示例
application/json
Body
errorId
integer
必需
errorCode
string
错误代码
errorDescription
string
错误详细描述
solution
object
必需
gRecaptchaResponse
string
必需
status
string
必需
示例
{
"errorId": 0,
"errorCode": "string",
"errorDescription": "string",
"solution": {
"gRecaptchaResponse": "string"
},
"status": "string"
}
修改于 2023-09-30 14:40:44