GUACAMOLE-678: Assign clientID variable instead of string literal.

This commit is contained in:
Virtually Nick
2019-04-18 08:59:01 -04:00
parent ea1b10e9d1
commit 26cc9bc65b

View File

@@ -78,7 +78,7 @@ public class TokenField extends Field {
this.authorizationURI = UriBuilder.fromUri(authorizationEndpoint)
.queryParam("scope", scope)
.queryParam("response_type", "id_token")
.queryParam("client_id","clientID")
.queryParam("client_id", clientID)
.queryParam("redirect_uri", redirectURI)
.queryParam("nonce", nonce)
.build();