We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dadb69f commit e9f04acCopy full SHA for e9f04ac
src/main/java/com/webfleet/oauth/controller/CallbackController.java
@@ -82,9 +82,9 @@ public String callback(Model model,
82
// we are following oauth authorization code grant flow
83
// to request a token pair using an auth code flow we provide the obtained authorization code
84
params.put("grant_type", "authorization_code");
85
- // oauth client identifier, should be registered in TTTSP side
+ // oauth client identifier
86
params.put("client_id", clientId);
87
- // oauth client secret matching previous identifier
+ // oauth client secret
88
params.put("client_secret", clientSecret);
89
// the code we received and we need to provide as indicated with grant_type parameter
90
params.put("code", code);
0 commit comments