【发布时间】:2020-03-10 09:49:16
【问题描述】:
请帮助我了解来自 ASP netcore 应用程序和 netcore Kestrel 托管应用程序的 JWT 令牌验证之间的区别。
有两个应用程序使用如下源代码验证令牌:
public static IServiceCollection AddJwtToken(this IServiceCollection services, OAuthConfig config)
{
services.AddMvc();
services.AddAuthorization();
Logger.DebugFormat("AddJwtBearer authority:{0} audience:{1}", config.GetAuthority(), config.Resource);
services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
.AddJwtBearer(options => new JwtBearerOptions
{
Authority = config.GetAuthority(),
Audience = config.Resource,
});
return services;
}
这很简单,如果从 asp net core 2.2 应用程序验证令牌,它会很好地工作
// in the asp.net core
var builder = WebHost.CreateDefaultBuilder(args);
builder
.UseStartup<Startup>()
.ConfigureKestrel(_ => _.ConfigureEndpoints())
.UseSerilog();
还有另一个应用程序(控制台)使用UseKestrel启动相同的休息服务主机
//in the console app
var builder = WebHost.CreateDefaultBuilder()
.UseNLog()
.UseKestrel(_ => _.ConfigureEndpoints())
.UseStartup<Startup>();
唯一一个显着的区别是控制台中有UseKestrel,通过ConfigureKestrel 用于asp.net core。
相同的源代码(和配置)用于从 Azure AD 获取令牌。
请查找the gist here。
它被配置为从https://login.microsoftonline.com/{tenant}/v2.0 提供程序获取令牌。两种情况都使用相同的令牌端点、clientid、secret 和 scope 值。
问题是AddJwtBearer 在 asp.net 核心中验证令牌,而不是在控制台应用程序中。
错误是
Microsoft.IdentityModel.Tokens.SecurityTokenSignatureKeyNotFoundException: IDX10501: Signature validation failed. Unable to match keys:
kid: 'BB8CeFVqyaGrGNuehJIiL4dfjzw',
token: '{"typ":"JWT","alg":"RS256","kid":"BB8CeFVqyaGrGNuehJIiL4dfjzw"}.{"aud":"2c163c99-935b-4362-ae0d-657f589f5565","iss":"https://login.microsoftonline.com/{tenantidhere}/v2.0
为什么 asp.net 核心主机验证令牌(对于第一个 AddJwtBearer 实现)而控制台主机失败?
谢谢
【问题讨论】:
标签: c# asp.net-core azure-active-directory openid