标签: c# .net
我想在我的网络API中使用Windows身份验证,但我总是收到以下消息:“此请求已拒绝授权。”我错过了什么吗?
IIS设置:
网络配置:
控制器:
[HttpGet] [Route("api/testauthentication")] [Authorize] public IHttpActionResult TestAutentication() { return Ok(true); }
答案 0 :(得分:1)
解决方案:
IIS Express gives Access Denied error when debugging ASP.NET MVC