-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support OpenID Connect 1.0 prompt=none parameter #501
Comments
@ufkl We'll look at adding support for the See |
Hello, I just wanted to ask if there is any update on the implementation of this feature in the project. The support for the prompt=none parameter would be very useful to enable silent authentication without interrupting the user in SPA applications. (Maybe related to #211 work) Thank you for your time and attention. |
@asiercamara No updates so far. Given that this feature currently has 4 upvotes, it's on the lower priority scale. We prioritize features for the next release based on upvotes and other factors. |
This change provides limited support for OIDC 'prompt' parameter for authorization code requests. If the request contains 'prompt' parameter and it's value is 'none', authorization server does not redirect user to login/consent page. Instead, OAuth2 error is returned in redirect to client app. Fixes spring-projectsgh-501 (partially)
Hello, If providing support only for As a workaround, currently we use custom |
This is now merged via 19dfcd4. This commit adds support for There are no plans to add support for We may consider adding support for |
I understand how |
Expected Behavior
To support silent authentication on Authorization Code Flow with PKCE.
Reference: https://auth0.com/docs/login/configure-silent-authentication
Current Behavior
Single Page Application(SPA) is public client. As it can't hold secret, the SPA need integrate with Authorization Server using Authorization Code Flow with PKCE. When access token is expired, SPA need to redirect users to Authorization Server to begin new Authorization Code Flow, result a bad user experience.
The text was updated successfully, but these errors were encountered: