本文介绍了实施JWT认证的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要寻找使用来实现JSON网络令牌认证 IdentityModel.Tokens.Jwt
最简单的方法。这里是一个封装本身的链接:
I am looking for the easiest way to implement JSON Web Token authentication using IdentityModel.Tokens.Jwt
. Here is a link to a package itself:
推荐答案
这是对我工作:
var securityKey = new InMemorySymmetricSecurityKey(Encoding.Default.GetBytes("MySecretKey"));
var header = new JwtHeader(new SigningCredentials(securityKey, SecurityAlgorithms.HmacSha256Signature, SecurityAlgorithms.Sha256Digest));
var payload = new JwtPayload();
var claims = new List<Claim>
{
new Claim(ClaimTypes.Email, "[email protected]"),
...
};
payload.AddClaims(claims);
// if you need something more complex than string/string data
payload.Add("tags", new List<string> { "admin", "user" });
var token = new JwtSecurityToken(header, payload);
var tokenString = securityTokenHandler.WriteToken(token);
这篇关于实施JWT认证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!