hi
You can add Certificate in another way.
AddEncryptionCertificate
and AddSigningCertificate
has some override method.
string encryptionThumbprint = configuration["ThumbprintCertificate:EncryptionThumbprint"];
string signingThumbprint = configuration["ThumbprintCertificate:SigningThumbprint"];
context.Services.AddOpenIddict().AddServer(options =>
{
options.AddEncryptionCertificate(encryptionThumbprint, StoreName.My, StoreLocation.LocalMachine);
options.AddSigningCertificate(signingThumbprint, StoreName.My, StoreLocation.LocalMachine);
});
Or you provide some code and steps so that we can reproduce the problem in the new template project.
liming.ma@volosoft.com
hi
Please share the source code of your authserver
web module.
hi
Unknown client or not enabled: Sports_Blazor
Please remember to clear Redis, which may cache outdated data.
Thanks petro.samoshkin
hi
Check the logs.txt of auth server project.
You can create a new project and compare the appsettings.json
of DbMigrator
and the OpenIddictDataSeedContributor
class.
hi
We are getting invalid_token error after click logout button from Angular site when openiddict auth service running in load balance mode.
Please share the full logs.
I learned that I need to make changes in the ElasticSearchOption class
You can create a new options class and use it.