代码拉取完成,页面将自动刷新
using LJJ_Shop.Models;
using Microsoft.Extensions.Options;
using Microsoft.IdentityModel.Tokens;
using System;
using System.Collections.Generic;
using System.IdentityModel.Tokens.Jwt;
using System.Linq;
using System.Security.Claims;
using System.Text;
using System.Threading.Tasks;
namespace LJJ_Shop.Services
{
/// <summary>
///
/// </summary>
public class JWTService : IJWTService
{
private readonly JWTConfig _jwtConfig;
public JWTService(IOptions<JWTConfig> jwtConfig)
{
this._jwtConfig = jwtConfig.Value;
}
public string CreateToken(int userId, string name)
{
//把有需要的信息写到Token
var claims = new[] {
new Claim(ClaimTypes.NameIdentifier, userId.ToString()),
new Claim(ClaimTypes.Name, name),
};
//创建密钥
var key = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(_jwtConfig.Secret));
//密钥加密
var credentials = new SigningCredentials(key, SecurityAlgorithms.HmacSha256);
//token配置
var jwtToken = new JwtSecurityToken(_jwtConfig.Issuer,
_jwtConfig.Audience,
claims,
expires: DateTime.Now.AddMinutes(_jwtConfig.AccessExpiration),
signingCredentials: credentials);
//获取token
var token = new JwtSecurityTokenHandler().WriteToken(jwtToken);
return token;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。