Reputation: 1264
I need to know whether the response of the GET request is compressed/decompressed using gzip or not?
Upvotes: 1
Views: 146
Reputation: 416
OkHttp will do transparent gzip on response bodies unless you disable the feature with this Header:
Accept-Encoding: identity
Upvotes: 2