授权错误 - ASP.NET 具有基于令牌的授权和角色的 Web API

本文关键字:授权 令牌 API Web 角色 于令牌 ASP 错误 NET | 更新日期: 2023-09-27 17:57:10

我正在使用带有基于 OWIN 令牌的身份验证的 Web API 2。除了基于角色的授权外,一切进展顺利。

这是我的控制器:

[Authorize(Roles = "Admin")]
[RoutePrefix("api/Account")]   
public class AccountController : ApiController
{
    ..............
    // POST api/Account/Register
    //[AllowAnonymous]
    [Route("Register")]
    public async Task<IHttpActionResult> Register(AppUser user)
    {
      ...............

问题如下:我使用具有管理员角色的用户登录了我的应用程序,但在尝试注册时收到未经授权的错误 401。我已经纠正了我用来登录的 AspNetUser 是 AspNetUserRoles 表中的管理员。

这是我的 GrantResourceOwnerCredentials 方法:

public override async Task GrantResourceOwnerCredentials(OAuthGrantResourceOwnerCredentialsContext context)
    {
        context.OwinContext.Response.Headers.Add("Access-Control-Allow-Origin", new[] { "*" });
        using (AuthRepository _repo = new AuthRepository(new GloboStudioUniversityContext()))
        {
            IdentityUser user = await _repo.FindUser(context.UserName, context.Password);
            if (user == null)
            {
                context.SetError("invalid_grant", "The user name or password is incorrect.");
                return;
            }

        }
        var identity = new ClaimsIdentity(context.Options.AuthenticationType);
        identity.AddClaim(new Claim("sub", context.UserName));
        //identity.AddClaim(new Claim("role", "user"));
        identity.AddClaim(new Claim(ClaimTypes.Role, "Admin"));
        identity.AddClaim(new Claim(ClaimTypes.Role, "Student"));
        identity.AddClaim(new Claim(ClaimTypes.Role, "Candidate"));
        context.Validated(identity);
    }

授权错误 - ASP.NET 具有基于令牌的授权和角色的 Web API

您能否检查一下"管理员"声明是否已在您的 api 方法中解析......

var identity = User.Identity as ClaimsIdentity;
var claim = identity.Claims.FirstOrDefault(c => c.Type == ClaimTypes.Role && c.Value == "Admin");
if (claim == null) {
  //Raise 401
}

"授权"属性不理解声明。它查找 Admin 作为角色,因此它调用 IPrincipal 接口的"User.IsInRole"方法。

为了完成这项工作,您需要将声明添加为 owin 管道中的角色,并分配给 HttpContext.Current.User。