From 12d72796907d02544ee02e3d900cadf54cfa0e63 Mon Sep 17 00:00:00 2001 From: Andrea Patricelli Date: Thu, 19 Sep 2024 15:52:12 +0200 Subject: [PATCH] removed comment --- .../credentialsgenerator/CredentialsGeneratorApplication.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/tirasa/connid/bundles/googleapps/credentialsgenerator/CredentialsGeneratorApplication.java b/src/main/java/net/tirasa/connid/bundles/googleapps/credentialsgenerator/CredentialsGeneratorApplication.java index 3f36543..1b9b397 100644 --- a/src/main/java/net/tirasa/connid/bundles/googleapps/credentialsgenerator/CredentialsGeneratorApplication.java +++ b/src/main/java/net/tirasa/connid/bundles/googleapps/credentialsgenerator/CredentialsGeneratorApplication.java @@ -109,7 +109,7 @@ private void getConfigurationMap(final File clientJson) throws IOException, URIS String requestUrl = new GoogleAuthorizationCodeRequestUrl( clientSecrets.getDetails().getClientId(), redirectUri, SCOPES) .setState("/profile") - .setAccessType("offline") // Imposta access_type=offline + .setAccessType("offline") .set("prompt", "consent") .build(); LOG.info("Request Url is {}", requestUrl);