Mauro Bellati
Mauro Bellati
I also have the same issue. We are using OpenIddict module and the temporary proposed solution ``` PreConfigure(builder => { builder.UpdateAbpClaimTypes = false; builder.UpdateJwtSecurityTokenHandlerDefaultInboundClaimTypeMap = false; }); ``` does not...
In case someone is looking for a workaround or a partial solution. @myall200 We explicitly set `JwtBearerOptions.MapInboundClaims = false` as: ```csharp services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme) .AddJwtBearer( options => { options.MapInboundClaims = false; //...
@bodeg you are welcome. Happy it works for you too!