...
参数 | 类型 | 是否必须 | 描述 |
---|---|---|---|
clientKey | string | yes | 你的clientkey |
type | string | yes | CloudFlare5STask |
websiteURL | string | yes | 网站url |
proxy | string | yes | 使用的代理,如 |
rqData | Object | optional | 如果添加此字段,请求将会以Post的方式发送,如
|
示例
Code Block |
---|
POST https://api.ez-captcha.com/createTask Content-Type: application/json { "clientKey": "YourClientKey", "task": { "websiteURL": "https://xxx.com", "type": "CloudFlare5STask", "proxy": "http://username:password@ip:port", "rqData":{ //可选 "mode":"JSON", //JSON或者FORM 根据网页的提交方式确定 如果需要以POST形式发包,你必须添加该值 "namename1":"value",//你的字段 "name2":123456, ... }, } } |
返回示例
Code Block |
---|
{ "errorId": 0, "errorCode": "", "errorDescription": "", "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006" // Please save this ID for next step } |
...