Windows NTLM身份验证。凭证窗口未显示

时间:2019-03-20 07:31:34

标签: windows authentication asp.net-web-api asp.net-core

我在Main()中有此配置:

    .UseHttpSys(options =>
  {
     options.Authentication.Schemes =
      AuthenticationSchemes.NTLM;
      options.UrlPrefixes.Add("http://localhost:20019");
   })

您可以看到我使用AuthenticationSchemes.NTLM

我通过chrome向控制器发出请求,我在自定义AuthorizationHandler中看到我的贷方如何自动通过,但我没有输入他们。

如果信任this网站,应该已经显示“信用”窗口。

enter image description here

所以...我做错了什么?

我在IE中对其进行了测试,但行为相同。

0 个答案:

没有答案