hi
I think you should replace all AccountService with AuthServer
hi
You need to use a existing scope eg AuthServer
context.Services.AddAuthentication()
.AddJwtBearer(options =>
{
options.Authority = configuration["AuthServer:Authority"];
options.RequireHttpsMetadata = Convert.ToBoolean(configuration["AuthServer:RequireHttpsMetadata"]);
options.Audience = "AuthServer";
});
ok, no problem.
hi
Ok, let’s discuss this with mail
hi
Please provide an example or additional documentation on how Dynamic Claims can be enabled with an Angular front end.
Angular can only get the latest claims by refreshing.
The /api/abp/application-configuration endpoint will respond to the latest states.
hi @rafael.gonzales
liming.ma@volosoft.com
hi
The framework will add it to access_token automatically. That is, if you don't change the code, it will be there.
https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/AbpUserClaimsPrincipalFactory.cs#L61
hi
Can you share the project or a simple project to reproduce this?
liming.ma@volosoft.com