1 回答

TA貢獻(xiàn)2037條經(jīng)驗(yàn) 獲得超6個(gè)贊
您要求服務(wù)器發(fā)送壓縮的內(nèi)容 (?req.Header.Add("Accept-Encoding", "gzip, deflate")
),這就是您得到的:gzip 響應(yīng),由響應(yīng)標(biāo)頭指示:Content-Encoding:[gzip]
。
刪除該標(biāo)頭(不設(shè)置Accept-Encoding
請求標(biāo)頭),您應(yīng)該得到純 JSON 響應(yīng)?;蛘咦约航獯a gzip 響應(yīng)。
請注意,如果省略此標(biāo)頭,默認(rèn)傳輸仍會請求gzip
編碼,但也會透明地對其進(jìn)行解碼。由于您明確請求它,因此不會發(fā)生透明的自動解碼。這在Transport.DisableCompression
現(xiàn)場有記錄:
// DisableCompression, if true, prevents the Transport from
// requesting compression with an "Accept-Encoding: gzip"
// request header when the Request contains no existing
// Accept-Encoding value. If the Transport requests gzip on
// its own and gets a gzipped response, it's transparently
// decoded in the Response.Body. However, if the user
// explicitly requested gzip it is not automatically
// uncompressed.
DisableCompression bool
- 1 回答
- 0 關(guān)注
- 230 瀏覽
添加回答
舉報(bào)