Web api windows授权被拒绝

时间:2018-05-28 13:28:20

标签: c# .net

我想在我的网络API中使用Windows身份验证,但我总是收到以下消息:“此请求已拒绝授权。”我错过了什么吗?

IIS设置:

enter image description here

网络配置:

enter image description here

控制器:

[HttpGet]
[Route("api/testauthentication")]
[Authorize]
public IHttpActionResult TestAutentication()
{
    return Ok(true);
}

1 个答案:

答案 0 :(得分:1)