AFNetworking Enable GZIP

前端 未结 2 1124
陌清茗
陌清茗 2021-02-13 02:56

I am looking on the AFNetworking site that GZIP compression is supported \" Gzip decompression from server responses is already built into AFNetworking, as NSURLConnection will

2条回答
  •  失恋的感觉
    2021-02-13 03:56

    It seems you need to add a HTTP header :

    [self setDefaultHeader:@"Accept-Encoding" value:@"gzip"]

    To the AfNetworking HTTP client.

提交回复
热议问题