AspNetCore5API控制器中的IHttpContextAccessor返回空的用户名声明
创始人
2024-09-20 08:00:52
0

在AspNetCore 5中,IHttpContextAccessor服务用于获取HTTP上下文信息。但是,有时在API控制器中使用IHttpContextAccessor时,它可能会返回空的用户名声明。这是因为在ASP.NET Core 5中修改了默认模板,使得Claims属性不再自动填充。

为了解决这个问题,我们需要手动填充Claims属性。我们可以通过在Startup.cs文件中添加以下代码来完成填充:

services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
.AddJwtBearer(options =>
{
    options.TokenValidationParameters = new TokenValidationParameters
    {
        ValidateIssuer = true,
        ValidateAudience = true,
        ValidateLifetime = true,
        ValidateIssuerSigningKey = true,

        ValidIssuer = "yourIssuer",
        ValidAudience = "yourAudience",
        IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes("yourSecretKey"))
    };

    // Add a delegate to get username from Claims
    options.Events = new JwtBearerEvents
    {
        OnTokenValidated = context =>
        {
            var claimsIdentity = context.Principal.Identity as ClaimsIdentity;

            if (claimsIdentity != null)
            {
                claimsIdentity.AddClaim(new Claim("username", context.Principal.FindFirstValue(ClaimTypes.Name)));
            }

            return Task.CompletedTask;
        }
    };
});

services.AddHttpContextAccessor();

这里我们首先将身份验证服务添加到DI容器中,然后在AddJwtBearer方法中添加JwtBearerOptions。在JwtBearerOptions中,我们设置了TokenValidationParameters并添加了一个委托来从声明中获取用户名,并将其添加到身份验证上下文中。最后,我们将IHttpContextAccessor服务添加到DI容器中。

这样,在我们的API控制器中,我们可以使用IHttpContextAccessor服务获取用户名声明,如下所示:

[ApiController]
[Route("[controller]")]
public class TestController : ControllerBase
{
    private readonly IHttpContextAccessor _httpContextAccessor;

    public TestController(IHttpContextAccessor httpContextAccessor)
    {
        _httpContextAccessor = httpContextAccessor;
    }

    [HttpGet("username")]
    public IActionResult GetUsername()
    {
        var username = _httpContextAccessor.HttpContext.User.FindFirstValue("username");

        return Ok(username);
    }
}

如此一来,我们就可以在API控制器中成功获取用户名声明了。

相关内容

热门资讯

四分钟操作!wepoker有没... 四分钟操作!wepoker有没有挂(透视)原来真的有辅助开挂(哔哩哔哩)1、wepoker有没有挂免...
第五分钟指南!hhpkoer辅... 第五分钟指南!hhpkoer辅助器视频(透视)原来真的是有辅助插件(哔哩哔哩)1、hhpkoer辅助...
第2分钟办法!wepoker模... 第2分钟办法!wepoker模拟器哪个(透视)好像真的有辅助脚本(哔哩哔哩)1、下载好wepoker...
第3分钟绝活!sohoo po... 第3分钟绝活!sohoo poker辅助器(透视)一直是有辅助插件(哔哩哔哩)1、在sohoo po...
三分钟机巧!德州机器人代打脚本... 三分钟机巧!德州机器人代打脚本(透视)其实真的有辅助透视(哔哩哔哩)1、全新机制【德州机器人代打脚本...
三分钟积累!wepoker数据... 三分钟积累!wepoker数据分析(透视)果然真的是有辅助神器(哔哩哔哩)1、wepoker数据分析...
一分钟方案!we-poker辅... 一分钟方案!we-poker辅助器(透视)好像是真的有辅助教程(哔哩哔哩)1、we-poker辅助器...
8分钟诀窍!wepoker辅助... 您好,wepoker辅助器有哪些功能这款游戏可以开挂的,确实是有挂的,需要了解加去威信【485275...
四分钟法子!wpk透视是真的假... 四分钟法子!wpk透视是真的假的(透视)都是是有辅助神器(哔哩哔哩)wpk透视是真的假的辅助器是一种...
第七分钟总结!hhpoker有... 第七分钟总结!hhpoker有后台操作吗(透视)果然是有辅助教程(哔哩哔哩)1、该软件可以轻松地帮助...