Open
Description
Support silent renewal with prompt=none in Oauth2 Implicit Grant
Problem
Missing support for silent renewal in OAuth2 Implict Grant
Solution
Support for prompt=none
in Implicit Grant as described in OpenID Connect Core 1.0
Alternatives/workarounds
- The only workaround known is currently described here: https://stackoverflow.com/questions/55859793/is-prompt-none-for-silent-refresh-in-a-spa-possible-with-fusionauth-and-its-prov
- If you only need to know if a user is logged in, you can use a
fetch
call withcredentials: "include"
and look at the status. If the status is 200, the user is not logged in, otherwise the user is logged in.
Related
- Login hint ignored. No way to force user to re-authenticate #1999
- Support the prompt parameter #2208
How to vote
Please give us a thumbs up or thumbs down as a reaction to help us prioritize this feature. Feel free to comment if you have a particular need or comment on how this feature should work.