Open anssiv opened 12 months ago
In .NET 8 there is a breaking change that the Authentication.JwtBearer.Google is affected by.
At the very least, you should include documentation specifying that UseSecurityTokenValidators=true is now a required configuration.
UseSecurityTokenValidators=true
.AddJwtBearer(options => { options.UseSecurityTokenValidators = true; options.UseGoogle("..."); });
Ah, thanks for the heads up! I'll push a new version as soon as possible. Wanna send a PR? 😇
In .NET 8 there is a breaking change that the Authentication.JwtBearer.Google is affected by.
At the very least, you should include documentation specifying that
UseSecurityTokenValidators=true
is now a required configuration.