You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The way the /authorize endpoint currently works is that it checks if a user is currently logged in, and if not it redirects the user to the /login endpoint (after login, the user goes back to /authorize).
Therefore it might make sense to support login_hint both on /authorize and /login.
The text was updated successfully, but these errors were encountered:
When a user is redirected to the
/authorize
endpoint using an OpenID Connect client, we should support thelogin_hint
query parameter here.login_hint
can be the username or email address. It's documented here https://openid.net/specs/openid-connect-core-1_0.html#AuthRequestThe way the
/authorize
endpoint currently works is that it checks if a user is currently logged in, and if not it redirects the user to the/login
endpoint (after login, the user goes back to/authorize
).Therefore it might make sense to support
login_hint
both on/authorize
and/login
.The text was updated successfully, but these errors were encountered: