async-http-client
async-http-client copied to clipboard
Does AHC support decompressing body by gzip or deflate automatically?
When the response has a header named Content-Encoding, does AHC support decompressing body by gzip or deflate automatically? If not, how can I implement the function of decompresssing the body after receiving response?
It is done automatically, you could test it against https://httpbin.org/#/Response_formats/get_gzip
It is done automatically, you could test it against https://httpbin.org/#/Response_formats/get_gzip
It's useful.Thank you very much!