...
请求格式:POST
application/json
对象结构
属性 | 类型 | 必须 | 说明 |
---|---|---|---|
clientKey | string | 是 | 您账号的用户密钥 |
type | string | 是 | 任务类型: FuncaptchaTaskProxyless |
websiteURL | string | 是 | 使用Funcaptcha的网页地址,一般固定值。 |
websiteKey | String | 是 | 使用Funcaptcha网站密钥,固定值。 |
请求示例
Code Block |
---|
POST https://api.ez-captcha.com/createTask Content-Type: application/json { "clientKey": "7e5ffc29e3354a19991002f2a19978bb696679", "task": { "websiteURL": "https://signup.live.com/signup2", "websiteKey": "B7D8911C-5CC8-A9A3-35B0-554ACEE604DA", "type": "FuncaptchaTaskProxyless" } } |
...
Code Block |
---|
POST https://api.ez-captcha.com/getTaskResult 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 - 正在识别中,请1秒后重试 |
solution | Object | 识别结果,不同类型的captcha的结果会有所区别,对于Funcaptcha而言,结果为对象中的token。 |
solution.token | string | 识别结果:token值,用于POST或模拟提交给目标网站。 一次性使用,建议获取后立即使用。 |
响应示例
Code Block |
---|
{ "errorId": 0, "solution": { "token": "03AGdBq25SxXT-pmSeBXjzScW-EiocHwwpwqtk1QXlJnGnU......" }, "status": "ready" } |
...