hi
Can you zip and share the bin folder of the error project?
liming.ma@volosoft.com
Thanks.
hi
Can you try to change your Program.cs file to the new style?
You can create a new project and check its Program.cs and WebModule code.
eg: https://github.com/abpframework/abp/blob/dev/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/Program.cs#L11-L56 https://github.com/abpframework/abp/blob/dev/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyProjectNameWebModule.cs#L211-L252
Thanks.
hi
You can change log level in SerilogConfigurationHelper.Configure(assemblyName); file
Can you set the MapInboundClaims property of AddJwtBearer/AddAbpJwtBearer method to false?
.AddAbpJwtBearer(options => {
options.TokenValidationParameters = new TokenValidationParameters
//...tions.MapInboundClaims = false;
options.MapInboundClaims = false;
//...
}
hi
Are you using the source code reference of account and openiddict modules?
Can you share your project source code?
Thanks.