Hi,
The OpenID Connect protocol supports a prompt=none parameter on the authentication request that allows applications to indicate that the authorization server must not display any user interaction (such as authentication, consent, or MFA).
see: https://auth0.com/docs/authenticate/login/configure-silent-authentication
Please, consider adding this feature in the OIDC module.
In my context I have a main portal (not developed in Mendix) that users access to. either as anonymous or logged in users. From there the users jump to Mendix applications. Having the silent auth option will allow me to correctly handle the incoming user:
- if he were already connected to the portal, then the silent auth will automatically connect him to my Mendix app.
- if he was anonymous on the portal he will stay as anonymous in my application.
Thanks