...
Parameter | Type | Required | Description |
---|---|---|---|
tls_type | string | true | chrome107/chrome124/footlocker_ios_app |
proxy | string | true | http://username:password@host:port |
method | string | true | get/post |
url | string | true | target url |
headers | object | true | {“user-agent”:"Mozilla/5.0 (Windows NT 10.0; Win64…."} |
headers_order | string | true | user-agent,sec-ch-ua,sec-ch-ua-mobile |
cookies | object | true | {“_abck“:”xxx”,”bm_sz”:”xxxx”} |
body | string | true | “data=xxxx&aa=xxxx” or “{“xxx“:”xxxxx”}” |
...
Code Block | ||
---|---|---|
| ||
{
"clientKey": "YourClientKey",
"task": {
"type": "TlsTask",
"tls_type": type, // chrome107/chrome124/footlocker_ios_app
"proxy": proxy, // http://username:password@host:port
"method": method, // get/post
"url": url, // https://xxxxxx
"headers": headers, // {"user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64…."}
"headers_order": headersorder, // user-agent,sec-ch-ua,sec-ch-ua-mobile
"cookies": cookies, // {"_abck":"xxx","bm_sz":"xxxx""}
"body": body // data=xxxx&aa=xxxx / {"xxx":"xxxxx"}
}
} |
...