Activities of "maliming"

hi


public override void PreConfigureServices(ServiceConfigurationContext context)
{
    PreConfigure<OpenIddictServerBuilder>(builder =>
    {
        builder.SetIssuer(new Uri("https://abc.domain.com/svc"));
    });
}

hi

Can you try to delete this cookie?

The app will set the cookie again.

hi

Configure<HubOptions>(options =>
{
    options.DisableImplicitFromServicesParameters = true;
});

https://github.com/dotnet/aspnetcore/issues/38842#issuecomment-1342540950

hi

https for all urls required. Also for urls received by discovery

Please share the logs of authserver.

Answer

hi

You can add a middleware after the authentication.

app.Use(async (context, next) =>
{
    // Do work that can write to the Response.
    await next.Invoke();
    // Do logging or other work that doesn't write to the Response.
});

https://learn.microsoft.com/en-us/aspnet/core/fundamentals/middleware/?view=aspnetcore-7.0

Answer

hi

You can check the current user's claims in the internal website. The client_id in the claims.

Thanks @john

You can try, if there is an error you can degrade your CLI and Suite to old version.

Source code also is broken.

Answer

hi

You can try this:


Alerts.Danger("unauthorized messages");
return Page();
Showing 5931 to 5940 of 10645 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20