hi
the ABP framework pulls in an access token from Azure AD and then exchanges it for an application token which is returned to Angular and stored. Is there a way for us to not exchange the application token and keep the access token from Azure AD to call others apis with the Azure AD access token?
You can't do this, it's a designed process.
You can create a new API that returns Azure AD tokens.
//get origin azure ad tokens
httpContext.GetTokenAsync("access_token");
httpContext.GetTokenAsync("id_token");
hi
The abp update command will only help you upgrade the version of the package, I suggest you manually update the package and other breaking changes.
hi
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<TokenCleanupOptions>(options =>
{
options.CleanupPeriod = 60000; //Default: 3,600,000 ms, 1 hour
options.MinimumAuthorizationLifespan = TimeSpan.FromMinutes(15);
options.MinimumTokenLifespan = TimeSpan.FromMinutes(15);
});
}
OK, I will test it asap. Thanks
hi
The changes only need to applied to Identity Server(AuthServer) project
We will solve the problem as soon as possible
It does not fix the problem when we logout and login again. After a few times the permissions get loaded again
Can you share a URL and username & password so I can reproduce the problem online?
liming.ma@volosoft.com
hi This is an app issue, we will fix the scroll issue in the next patch release.
hi
Can you share your project? liming.ma@volosoft.com