I want to implement MSAL popup login mode for Blazor Server, but still fail to do so.
Only found a way to use popup login mode for Blazor WebAssembly.
For Blazor WebAssembly is just a simple configuration in program.cs:
builder.Services.AddMsalAuthentication(options => { // ... options.ProviderOptions.LoginMode = "redirect"; //can choose redirect or popup });But for Blazor Server, I still cannot find it.
It is the requirement for me to implement the popup login instead of redirect login.
Your help/view really appreciated
I need to be able to login by using popup login mode instead of redirect.