Skip to content

Commit e9f04ac

Browse files
authored
Rebranding fix
1 parent dadb69f commit e9f04ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/webfleet/oauth/controller/CallbackController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ public String callback(Model model,
8282
// we are following oauth authorization code grant flow
8383
// to request a token pair using an auth code flow we provide the obtained authorization code
8484
params.put("grant_type", "authorization_code");
85-
// oauth client identifier, should be registered in TTTSP side
85+
// oauth client identifier
8686
params.put("client_id", clientId);
87-
// oauth client secret matching previous identifier
87+
// oauth client secret
8888
params.put("client_secret", clientSecret);
8989
// the code we received and we need to provide as indicated with grant_type parameter
9090
params.put("code", code);

0 commit comments

Comments
 (0)