mirror of
https://github.com/keycloak/keycloak.git
synced 2026-06-09 09:04:21 -04:00
Fix nonce/scope typo
This commit is contained in:
parent
fcb91a83ba
commit
085d0d73c9
1 changed files with 1 additions and 1 deletions
|
|
@ -1057,7 +1057,7 @@ public class OAuthClient {
|
|||
parameters.add(new BasicNameValuePair(OAuth2Constants.SCOPE, scopeParam));
|
||||
}
|
||||
if (nonce != null) {
|
||||
parameters.add(new BasicNameValuePair(OIDCLoginProtocol.NONCE_PARAM, scope));
|
||||
parameters.add(new BasicNameValuePair(OIDCLoginProtocol.NONCE_PARAM, nonce));
|
||||
}
|
||||
if (codeChallenge != null) {
|
||||
parameters.add(new BasicNameValuePair(OAuth2Constants.CODE_CHALLENGE, codeChallenge));
|
||||
|
|
|
|||
Loading…
Reference in a new issue