Note |
---|
通过使用同步接口创建任务 中国优化地址: |
Info |
---|
如果您得到了一个无效的Payload,请联系我们,我们将会为您解决和优化 |
...
参数 | 类型 | 必需 | 描述 |
---|---|---|---|
clientKey | string | true | 你的 client key |
type | string | true | KasadaTaskProxyless |
ua | string | true | 你想使用的userAgent,需要与你的程序中用的ua匹配 |
ipsContent | string | true | 请求 |
lang | string | true | 你的程序用的header中的accept-language主要语言(只需要发送第一种语言) |
bmscbmsz | string | true | 前面的请求返回的Cookie中的 |
domain | string | true | 你要过的域名,如 |
...
POST https://sync.ez-captcha.com/createSyncTask
中国优化地址:http://47.115.166.118:16000/createSyncTask
Content-Type: application/json
Code Block |
---|
{ "clientKey": "YourClientKey", "task": { "type": "KasadaTaskProxyless", "ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "ipsContent": "xxxx", "lang": "en", "bmscbmsz": "xxxx", "domain": "xxx.xxx.com" } } |
...
参数 | 类别 | 必需 | 描述 |
---|---|---|---|
clientKey | string | true | 你的client key |
type | string | trueKasadaTaskWorkTimeProxyless | KasadaWorkTimeTaskProxyless |
domain | string | true | 你要过的域名,如 |
userAgent | string | true | 你想使用的userAgent,需要与你的程序中用的ua匹配 |
st | string | true | |
workTime | string | optional | 您可以使用提供的时间戳值预先生成header。 |
...
POST https://sync.ez-captcha.com/createSyncTask
中国优化地址:http://47.115.166.118:16000/createSyncTask
Content-Type: application/json
Code Block |
---|
{
"clientKey": "YourClientKey",
"task": {
"type": "KasadaWorkTimeTaskProxyless",
"domain": "xxx.xxx.com",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
"st": "1704442141209",
"workTime": "1704471401730"
}
} |
...