hi
We will address this issue in the next version.
Thanks.
hi dhill
Thanks for the solution. I will re-review some of this code to support all databases and a large number of linked users across tenants.
Your ticket has been refunded.
For SQL Server, you can use Recursive CTE Implementation to override the default queries.
Does this repository experience a lot of changes that we need to closely track?
This repository method will basically not change.
I will find a better way to address it.
Thanks.
hi
Try to change your oidc ProtocolMessage as below in production environment.
.AddAbpOpenIdConnect("oidc", options =>
{
//options.
options.Events.OnRedirectToIdentityProvider = redirectContext =>
{
redirectContext.ProtocolMessage.RedirectUri = "https://emeraldhealthcare.us/signin-oidc";
return Task.CompletedTask;
};
options.Events.OnRedirectToIdentityProviderForSignOut = redirectContext =>
{
redirectContext.ProtocolMessage.PostLogoutRedirectUri = "https://emeraldhealthcare.us/signout-callback-oidc";
return Task.CompletedTask;
};
})
hi
When you call AddSigningCertificate(certificate) with a specific X509Certificate2 object, OpenIddict uses it directly without validating expiration dates
Can you share the document url?
Thanks.
hi
The new error:
Client validation failed because 'http://emeraldhealthcare.us/signin-oidc' was not a valid redirect_uri for Emerald_Web_Public_Prod.
Have you added ctx.Request.Scheme = "https"; to the admin website?
app.Use(async (ctx, next) =>
{
ctx.Request.Scheme = "https";
await next();
});
Additionally, it seems there is an issue with your reverse proxy configuration. The browser requested HTTPS, but the URL is still HTTP.
Thanks.
hi
Which project has this error? MVC or Blazor?
Can you try enabling the Debug logs to see more information?
see https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
Thanks
hi
The new Blazor project will not use the _Host.cshtml file anymore.
If you are using App.razor in your project, you can remove the leptonx-blazor-compatibility.js from BundleContributor
The <leptonx-theme-appearance /> is not used in the latest project.
However, your current solution is suitable for your project.
Thanks.
Hi
Auth website. If not working, add it to all websites.
Thanks.