从HTTPClient响应中解压GZip流
问题:
如何使用WCF和HttpClient解压来自API的GZip编码JSON响应?
解答:
要使用HttpClient解压GZip编码的响应:
<code class="language-csharp">HttpClientHandler handler = new HttpClientHandler() { AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate };</code>
<code class="language-csharp">using (var client = new HttpClient(handler)) { // 您的代码 }</code>
重要提示:
如果使用.Net Core 2.1或更高版本,建议使用IHttpClientFactory并注入带有handler配置的客户端。例如:
<code class="language-csharp">services.AddHttpClient<XApiClient>().ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler { AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate });</code>
以上是如何在 WCF 中解压缩来自 HTTPClient 的 GZip 编码的 JSON 响应?的详细内容。更多信息请关注PHP中文网其他相关文章!