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
hi
When you directly or indirectly reference the AbpCachingStackExchangeRedisModule
module, Redis is used by default.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Caching.StackExchangeRedis/Volo/Abp/Caching/StackExchangeRedis/AbpCachingStackExchangeRedisModule.cs#L21
https://docs.abp.io/en/abp/latest/Redis-Cache#configuration
hi
[INF] AuthenticationScheme: Cookies was forbidden. 2023-01-13 07:15:27.044 +00:00 [INF] AuthenticationScheme: oidc was forbidden. 2023-01-13 07:15:27.052 +00:00
I see that the app's cookie authentication fails. However, the app's cookie is valid for 1 year, and I'm wondering why it doesn't work.
Can the problem be reproduced in a local development environment?