Skip to content
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 "acr_values" OpenID Connect auth request parameter #19

Open
iainmcgin opened this issue Mar 7, 2016 · 4 comments
Open

Support "acr_values" OpenID Connect auth request parameter #19

iainmcgin opened this issue Mar 7, 2016 · 4 comments
Milestone

Comments

@iainmcgin
Copy link
Member

OpenID Connect Core 1.0, Section 3.1.2.1, acr_values parameter:

OPTIONAL. Requested Authentication Context Class Reference values. Space-separated string that specifies the acr values that the Authorization Server is being requested to use for processing this Authentication Request, with the values appearing in order of preference. The Authentication Context Class satisfied by the authentication performed is returned as the acr Claim Value, as specified in Section 2. The acr Claim is requested as a Voluntary Claim by this parameter.

@iainmcgin iainmcgin modified the milestone: 1.0.0 Mar 10, 2016
@michaeltnguyen
Copy link

For anyone who needs this, you can simply use

AuthorizationRequest.Builder().setAdditionalParameters(Map<string, string>) with, for example, Collections.singletonMap("acr_values", "your_values_here"), and it will be sent as a query parameter.

@SreyOn-CPU
Copy link

Yes

@SreyOn-CPU
Copy link

Good

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants
@iainmcgin @michaeltnguyen @SreyOn-CPU and others