Does anyone knows if NSURLConnection/NSURLRequest have support for gzip requests.
If does, can you provide more information?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
although it does not seem to be documented, there is evidence that
NSURLConnectiondoes have transparent gzip support. meaning that if the server supports gzip encoding, and your request has anAccept-Encodingheader containinggzip*, the server will send a gzipped response, whichNSURLConnectionwill automatically decode.*
NSURLRequestmight add that header by default. if not, you have to add it manually like so: