Hi,
you can override the OnRedirectToIdentityProvider
method and change the redirect URL
var previousOnRedirectToIdentityProvider = options.Events.OnRedirectToIdentityProvider;
options.Events.OnRedirectToIdentityProvider = async ctx =>
{
you can change the RedirectUri here
ctx.ProtocolMessage.RedirectUri = ....;
if (previousOnRedirectToIdentityProvider != null)
{
await previousOnRedirectToIdentityProvider(ctx);
}
};
Can you reproduce it in a new project?
abp new Testapp
Hi,
Try setting the dictionary key to ‘new object()’ just like the snapshot debugger is doing. Example:
I will check if it is a bug of ABP.
Can you try this?
Re-generate the openiddict.pfx
file.
We use dotnet dev-certs https
to generate the pfx file.
dotnet dev-certs https -v -ep openiddict.pfx -p YOURPASSWORD
Hi,
You don't need to add @page "/identity/users"
https://abp.io/docs/latest/framework/ui/blazor/customization-overriding-components
CustomUserManagement.razor
@inherits UserManagement
...My page
CustomUserManagement.razor.cs
[ExposeServices(typeof(UserManagement))]
[Dependency(ReplaceServices = true)]
public partial class CustomUserManagement
{
}
Hi,
Could you share your code screenshots?
We use Excubo.Blazor.TreeViews
libary, you can install it and add the import to the import.razor
Hi,
I've installed Blazorise.Treeview lib , with the Excubo.Blazor.TreeViews class.
Please remove Blazorise.Treeview