If a request a POSTed with a gzipped body, and a content-encoding: gzip header, the content is not decoded.
For example when posting to /post with an content-type: application/json gzipped body & content encoding, the response contains "data": "data:application/octet-stream;base64,BASE64GZIPPEDDATA", and "json": null.
If there is no encoding used, json shows the parsed json correctly.
If a request a POSTed with a gzipped body, and a
content-encoding: gzipheader, the content is not decoded.For example when posting to
/postwith ancontent-type: application/jsongzipped body & content encoding, the response contains"data": "data:application/octet-stream;base64,BASE64GZIPPEDDATA",and"json": null.If there is no encoding used,
jsonshows the parsed json correctly.