...
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/put/del |
url | string | true | target url |
headers | object | true | {“user-agent“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": 'get'method, // get/post/put/del "url": url, // https://xxxxxx "headers": headers, // {“user"user-agent“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”abck":"xxx","bm_sz":"xxxx""} "body": body // data=xxxx&aa=xxxx / {“xxx“:”xxxxx”"xxx":"xxxxx"} } } |
Response Example
The returned payload is submitted as sensor data to the website api via POST request.
...