Network.setAcceptedEncodingsSets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
| Name | Type | Description |
|---|---|---|
encodings | array | List of accepted content encodings. |
{
"id": 1,
"method": "Network.setAcceptedEncodings",
"params": {
"encodings": []
}
}
{
"id": 1,
"result": {}
}
const result = await send('Network.setAcceptedEncodings', {"encodings": []});
console.log(result);