mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-678: Merge correction to value of "client_id" query parameter for OpenID.
Earlier changes incorrectly populated this query parameter with the literal name of a variable, "clientID", rather than the contents of that variable. The changes merged here correct this.
This commit is contained in:
@@ -78,7 +78,7 @@ public class TokenField extends Field {
|
|||||||
this.authorizationURI = UriBuilder.fromUri(authorizationEndpoint)
|
this.authorizationURI = UriBuilder.fromUri(authorizationEndpoint)
|
||||||
.queryParam("scope", scope)
|
.queryParam("scope", scope)
|
||||||
.queryParam("response_type", "id_token")
|
.queryParam("response_type", "id_token")
|
||||||
.queryParam("client_id","clientID")
|
.queryParam("client_id", clientID)
|
||||||
.queryParam("redirect_uri", redirectURI)
|
.queryParam("redirect_uri", redirectURI)
|
||||||
.queryParam("nonce", nonce)
|
.queryParam("nonce", nonce)
|
||||||
.build();
|
.build();
|
||||||
|
Reference in New Issue
Block a user