從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中文網其他相關文章!