我在Main()中有此配置:
.UseHttpSys(options =>
{
options.Authentication.Schemes =
AuthenticationSchemes.NTLM;
options.UrlPrefixes.Add("http://localhost:20019");
})
您可以看到我使用AuthenticationSchemes.NTLM
。
我通过chrome向控制器发出请求,我在自定义AuthorizationHandler
中看到我的贷方如何自动通过,但我没有输入他们。
如果信任this网站,应该已经显示“信用”窗口。
所以...我做错了什么?
我在IE中对其进行了测试,但行为相同。