Thanks you can create a new template project. liming.ma@volosoft.com
if still not working, Please share the full code to reproduce. Thanks
hi
Can you try to set AddDevelopmentEncryptionAndSigningCertificate to false?
public override void PreConfigureServices(ServiceConfigurationContext context)
{
PreConfigure<AbpOpenIddictAspNetCoreOptions>(options =>
{
options.AddDevelopmentEncryptionAndSigningCertificate = false;
});
}
hi
Did you add PreConfigure<OpenIddictServerBuilder> code on PreConfigureServices method?
What is the result of JWKS URL after your code is added?
hi
Do you mean the LastModifierId of operation is null after _operationRepository.UpdateAsync(operation, autoSave: true);?
Can you share a template project? liming.ma@volosoft.com
hi
The KeyPrefix of AbpDistributedCacheOptions has been set in all template projects, including the microservice template.
So also recommend you to do this.
hi
Thank you, I will confirm this.
hi
The Blazor server project uses OpenId Connect for authentication, and the default validity period of the token is 30 minutes.
You can change its lifetime.
PreConfigure<OpenIddictServerBuilder>(builder =>
{
builder.SetAccessTokenLifetime(TimeSpan.FromMinutes(30));
});
and we add a new feature, you can copy code to your project https://github.com/abpframework/abp/pull/15876
hi
How to replace Identity Server with Okta/ Azure Active Directory/ SSO?
You can integrate these services directly in your project according to the documentation.
abp is designed as a framework you can use any authentication and authorization service
https://docs.abp.io/en/abp/latest/Authorization#authorization
I still need to reproduce the problem locally, Can you share some steps and code?