hi
If you can use it in an ASP.NET Core application, you can also use it in an ABP application.
You just need to check its documentation. If you run into any issues, feel free to provide feedback
Thanks.
Add Microsoft.IdentityModel
with the latest version that fixes the problem.
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.12.1" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="8.12.1" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.12.1" />
hi
we only need how to configure it exactly.
You need to configure JSON options in two places.
// This is for MVC JsonSerializer
Configure<JsonOptions>(options =>
{
options.
});
// This is for ABP JsonSerializer
Configure<AbpSystemTextJsonSerializerOptions>(options =>
{
options.
});
hi
from a web or a public web redirect to a separated OpenIddict AuthServer, after the authority, redirected to the original the url, occurred this error
Please enable debug logs/ShowPII for web
, public web
, and AuthServer
. Then, reproduce the problem and share all logs.txt
files.
https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
liming.ma@volosoft.com
Thanks.
hi
I've reproduced your problem; I will fix it as soon as possible.
Thanks.
ok, I'm working on it.
I will add more test cases. Waiting for your real project.
Thanks.
hi
I will work on a minimal repro tomorrow.
Thank you very much. I will check your project as soon as possible once I receive it.
hi
I added a simple unit test, and there were no performance problems. https://github.com/abpframework/abp/pull/23316/files