Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejson
{
    "clientKey": "YourClientKey",
    "task": {
        "type": "TlsTask",
        "tls_type": type,   // chrome107/chrome124/footlocker
        "proxy": proxy,     // http://username:password@host:port
        "method": 'get'method,    // get/post
        "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.

...