标签: c# .net-core
在重定向之后,我需要执行HTTP GET操作。
using (var client = new HttpClient()) { var response = await client.GetAsync("https://example.com"); }
问题在于,如果服务器返回重定向到http://...(不是https)的302 HTTP代码,.NET不会跟随它(出于安全原因)。
http://...
https
如何强制HttpClient遵循从HTTPS到HTTP的重定向?
HttpClient