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、进入游戏-大厅左侧-新手...
解密透视!we poker辅助... 解密透视!we poker辅助器下载!交流学习经验辅助技巧(有挂透视)-哔哩哔哩1、进入到we po...
详情透视!红龙poker辅助器... 详情透视!红龙poker辅助器免费观看!推荐攻略辅助技巧(有挂解密)-哔哩哔哩1、红龙poker辅助...
有挂透视!wepoker好友助... 有挂透视!wepoker好友助力码!推荐十款辅助软件(确实有挂)-哔哩哔哩运wepoker好友助力码...
开挂透视!wepoker透视脚... 开挂透视!wepoker透视脚本免费使用视频!推荐攻略辅助软件(有挂工具)-哔哩哔哩;1.wepok...
分享透视!hhpoker德州透... 分享透视!hhpoker德州透视!每日必看辅助教程(有挂实锤)-哔哩哔哩1、hhpoker德州透视免...
辅助透视!wepoker免费脚... 辅助透视!wepoker免费脚本咨询!让我来分享经验辅助技巧(有挂教程)-哔哩哔哩1、游戏颠覆性的策...
值得注意的是!werplan免... 值得注意的是!werplan免费挂下载(透视)好像是真的辅助安装(有挂细节)-哔哩哔哩该软件可以轻松...
今日!wepoker模拟器哪个... 今日!wepoker模拟器哪个好用(透视)总是有辅助平台(有挂总结)-哔哩哔哩1、用户打开应用后不用...
透视脚本!pokemmo辅助官... 透视脚本!pokemmo辅助官网(透视)好像是真的辅助插件(真的有挂)-哔哩哔哩1、进入游戏-大厅左...