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
When trying to suppress the OAUTH2 user consent page with the prompt=none as an argument with the Authorization Request AM still returns a interaction_required error. prompt=none is part of the OpenID Connect Core 1.0 standard.
This happens even when "Allow clients to skip consent" on the OAuth2 service is true and when the Implied consent option in the agent is also true.
The text was updated successfully, but these errors were encountered:
The prompt=none parameter purpose is not to suppress the user consent page. The expected behavior is to return an error from the authorize endpoint when the user is not logged in, instead of displaying the authentication form.
I guess the issue here is that the user is authenticated against AM, but it is his/hers first login to OIDC enabled application (or there is no consent attribute configured). Ideally with "implied consent" (configuration of OIDC agent / client / app) there is no interaction so this should authenticate user.
When trying to suppress the OAUTH2 user consent page with the
prompt=none
as an argument with the Authorization Request AM still returns ainteraction_required
error.prompt=none
is part of the OpenID Connect Core 1.0 standard.This happens even when "Allow clients to skip consent" on the OAuth2 service is
true
and when theImplied consent
option in the agent is alsotrue
.The text was updated successfully, but these errors were encountered: