Activities of "maliming"

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.

ok, no problem. : )

Great

Hi

Auth website. If not working, add it to all websites.

Thanks.

Hi

You can add it and try again.

If still get 500 error please share the logs.txt files again.

Thanks.

hi

Your auth returns an error.

Does it have such code in the auth website startup module?

app.Use(async (ctx, next) =>
{
    ctx.Request.Scheme = "https";
    await next();
});     

Thanks.

Showing 1131 to 1140 of 12040 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.3.0-preview. Updated on February 27, 2026, 05:41
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.