手动处理302、302,防止headers丢失

This commit is contained in:
nilaoda 2022-07-10 17:47:45 +08:00
parent db0498f939
commit 3be3b53c77
1 changed files with 12 additions and 2 deletions

View File

@ -26,7 +26,7 @@ namespace N_m3u8DL_RE.Common.Util
public static readonly HttpClient AppHttpClient = new(new HttpClientHandler public static readonly HttpClient AppHttpClient = new(new HttpClientHandler
{ {
AllowAutoRedirect = true, AllowAutoRedirect = false,
AutomaticDecompression = DecompressionMethods.All, AutomaticDecompression = DecompressionMethods.All,
ServerCertificateCustomValidationCallback = (sender, cert, chain, sslPolicyErrors) => true ServerCertificateCustomValidationCallback = (sender, cert, chain, sslPolicyErrors) => true
}) })
@ -49,7 +49,17 @@ namespace N_m3u8DL_RE.Common.Util
} }
} }
Logger.Debug(webRequest.Headers.ToString()); Logger.Debug(webRequest.Headers.ToString());
var webResponse = (await AppHttpClient.SendAsync(webRequest, HttpCompletionOption.ResponseHeadersRead)).EnsureSuccessStatusCode(); var webResponse = await AppHttpClient.SendAsync(webRequest, HttpCompletionOption.ResponseHeadersRead);
if (webResponse.StatusCode == HttpStatusCode.Found || webResponse.StatusCode == HttpStatusCode.Moved)
{
HttpResponseHeaders respHeaders = webResponse.Headers;
Logger.Debug(respHeaders.ToString());
if (respHeaders != null && respHeaders.Location != null)
{
var redirectedUrl = respHeaders.Location.AbsoluteUri;
return await DoGetAsync(redirectedUrl, headers);
}
}
return webResponse; return webResponse;
} }