欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IDS4 使用数据库登录

程序员文章站 2024-03-19 13:22:34
...

在AccountController 中的login 方法里 验证的时候与数据库匹配

然后再实现IProfileService的方法,把Claims 对应进去。

 private Claim[] GetUserClaims()
        {
            return new Claim[]
            {
            new Claim("UserId", "1"),
            new Claim(JwtClaimTypes.Name,"test"),
            new Claim(JwtClaimTypes.GivenName, "test"),
            new Claim(JwtClaimTypes.FamilyName, "test"),
            new Claim(JwtClaimTypes.Email, "[email protected]"),
            new Claim(JwtClaimTypes.Role,"admin")
            };
        }

 

相关标签: 认证