implement "SelectAccount" page in "account" module. #19565
BackRelated https://github.com/abpframework/abp/pull/22419
Resolves #19562
The client has to set the Prompt
to select_account
when redirecting to the OAuth2 server.
.AddAbpOpenIdConnect("oidc", options =>
{
// ...
options.Events = new OpenIdConnectEvents
{
OnRedirectToIdentityProvider = redirectContext =>
{
redirectContext.ProtocolMessage.Prompt = "select_account";
return Task.CompletedTask;
}
};
// ...
});