{
HttpClientHandler httpClientHandler = new HttpClientHandler
{
AllowAutoRedirect = false,
CheckCertificateRevocationList = false,
ServerCertificateCustomValidationCallback = (_, _, _, _) => true,
MaxAutomaticRedirections = 99,
Proxy = default,
PreAuthenticate = false,
UseProxy = false,
UseDefaultCredentials = false,
};
httpClient = new HttpClient(httpClientHandler);
}
нужно AllowAutoRedirect сделать true, как лучше всего поступить?
☝️
👆
👆
Обсуждают сегодня