如何解码压缩的API响应?

时间:2019-03-29 10:08:56

标签: c# api http gzip pcap

我写了一个捕获程序,它监听网络上的HTTP流量。收到API响应后,我无法解决此问题,因为它已被gzip压缩。我使用pcapdotnet进行捕获,您可以在下面看到我的示例压缩响应。我如何解码此数据包?

HTTP/1.1 200 OK
Transfer-Encoding: chunked
Content-Type: application/json
Content-Encoding: gzip
Vary: Accept-Encoding
Server: Kestrel
BodyType: System.Collections.Generic.List`1[ZB.DTO.FRM.Frame.dSikcaSorulanSorular]
X-Powered-By: ASP.NET
Date: Fri, 29 Mar 2019 09:51:04 GMT


a
�

您会看到压缩的主体字节数组形式;

{97, 13, 10, 31, 139, 8, 0, 0, 0, 0, 0, 4, 0, 13, 10}

0 个答案:

没有答案