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..."
}
}