英文:
Does Okhttp GET request uses gzip as default?
问题
我需要知道GET请求的响应是否使用gzip进行了压缩/解压缩?
英文:
I need to know whether the response of the GET request is compressed/decompressed using gzip or not?
答案1
得分: 2
好的,以下是翻译好的部分:
OkHttp 在处理响应体时会自动进行透明的 gzip 压缩,除非你使用以下 Header 禁用该功能:
Accept-Encoding: identity
英文:
OkHttp will do transparent gzip on response bodies unless you disable the feature with this Header:
Accept-Encoding: identity
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论