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:
Mike Jumper
2019-04-20 10:48:34 -07:00
committed by GitHub

View File

@@ -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();