...
Parameter | Type | Required | Description |
---|---|---|---|
clientKey | string | true | Your client key |
type | string | true | KasadaTaskProxyless |
ua | string | true | Your user-agent, please keep it consistent with the one your program uses. |
ipsContent | string | true | The response body from |
lang | string | true | The main language of your accept-language header in your request (only send the first language) |
bmscbmsz | string | true | The |
domain | string | true | The domain you are generating for e.g |
...
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" } } |
...
Parameter | Type | Required | Description |
---|---|---|---|
clientKey | string | true | Your client key |
type | string | true | KasadaWorkTimeTaskProxyless |
domain | string | true | The domain you are generating for e.g |
userAgent | string | true | Your user-agent, please keep it consistent with the one your program uses. |
st | string | true | The st value in response header of |
workTime | string | optional | you can pregenerate your header with providing this timestamp value |
...
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"
}
} |
...