使用 Jwt 的基于令牌的身份验证无法授权
Posted
技术标签:
【中文标题】使用 Jwt 的基于令牌的身份验证无法授权【英文标题】:Token based authentication with Jwt fails to authorize 【发布时间】:2021-03-25 15:08:32 【问题描述】:我正在尝试为我的 web-api 设置基于令牌的身份验证。截至目前,我正在正确生成令牌,但我在使用令牌进行授权时遇到问题。使用邮递员,我在所有帖子上都收到 401 Unauthorized。我目前已将 Jwt 配置如下:
Startup.cs
public class Startup
public Startup(IConfiguration configuration)
Configuration = configuration;
private IConfiguration Configuration get;
public void ConfigureServices(IServiceCollection services)
services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
.AddJwtBearer(options =>
options.TokenValidationParameters = new TokenValidationParameters
ValidateIssuer = true,
ValidateAudience = true,
ValidateLifetime = true,
ValidateIssuerSigningKey = true,
IssuerSigningKey =
new SymmetricSecurityKey(Encoding.UTF8.GetBytes(Configuration["Jwt:Key"]))
;
);
services.AddMvc();
services.AddControllers();
services.AddSingleton<ITitleDataService, TitleDataService>();
services.AddSingleton<IPersonDataService, PersonDataService>();
services.AddSingleton<IUserDataService, UserDataService>();
services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies());
services.AddControllersWithViews()
.AddNewtonsoftJson(options =>
options.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore
);
services.AddMvc().AddControllersAsServices();
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
if (env.IsDevelopment())
app.UseDeveloperExceptionPage();
app.UseRequestLogging();
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.UseFileServer();
app.UseEndpoints(endpoints =>
endpoints.MapControllers();
);
这是我的控制器:
//LOGIN
[HttpPost("user/login/")]
public IActionResult Login(UserDto userDto)
var user = _dataService.Login(userDto.Username, userDto.Password);
IActionResult response = Unauthorized();
if (user)
var tokenStr = GenerateJSONWebToken(userDto);
response = Ok(new tokenStr);
else
return BadRequest("User not authorized");
return response;
[Authorize]
[HttpPost("post")]
public string Post()
var identity = HttpContext.User.Identity as ClaimsIdentity;
IList<Claim> claim = identity.Claims.ToList();
Console.WriteLine(claim.Count);
var username = claim[0].Value;
Console.WriteLine(username);
return "Welcome to " + username;
[Authorize]
[HttpGet("GetValue")]
public ActionResult<IEnumerable<string>> Get()
return new string[] "Value1", "Value2", "Value3";
private string GenerateJSONWebToken(UserDto userDto)
var securityKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(_config["Jwt:Key"]));
var credentials = new SigningCredentials(securityKey, SecurityAlgorithms.HmacSha256);
var claims = new[]
new Claim(JwtRegisteredClaimNames.Sub, userDto.Username),
new Claim(JwtRegisteredClaimNames.Email, userDto.Password),
new Claim(JwtRegisteredClaimNames.Jti, Guid.NewGuid().ToString()),
;
var token = new JwtSecurityToken(
issuer: "Issuer",
audience: "Issuer",
claims,
expires: DateTime.Now.AddMinutes(120),
signingCredentials: credentials);
var encodetoken = new JwtSecurityTokenHandler().WriteToken(token);
return encodetoken;
我尝试重新安排中间件管道,但没有任何运气。我对令牌的经验很少,因此对如何解决这个问题非常迷茫。非常感谢所有建议!
最好的问候, 杰斯珀
【问题讨论】:
【参考方案1】:这里有几个问题:您将中间件配置为验证颁发者(创建令牌的实体的 URL)和受众(令牌所针对的服务的 URL),但您没有这样做在配置中指定值。
您的令牌与发行者和受众一起写入“发行者”,但由于您的中间件未配置为接受“发行者”作为发行者/受众的正确值,因此您的令牌失败。
在您的中间件中,为颁发者和受众配置可接受的值,或者通过将 validateIssuer
和 validateAudience
设置为 false 来绕过颁发者和受众验证。
【讨论】:
三个小时的调试现已结束......非常感谢拜伦!这样就完成了!以上是关于使用 Jwt 的基于令牌的身份验证无法授权的主要内容,如果未能解决你的问题,请参考以下文章
添加基于策略的授权会跳过 JWT 不记名令牌身份验证检查吗?
如何使用 Apache Shiro 实现基于 JWT 令牌的身份验证机制?
如何使用自定义策略模式实现 jwt 令牌基础身份验证以在 .net 核心中进行授权?