Skip to content

Commit

Permalink
FIX: grant type key
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremiahUy committed Dec 2, 2024
1 parent ee15b05 commit 6c73ab3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private void updateToken(String scope) {

private MultiValueMap<String, String> formParameters(String scope) {
MultiValueMap<String, String> formParameters = new LinkedMultiValueMap<>();
formParameters.add("grant-type", "client_credentials");
formParameters.add("grant_type", "client_credentials");
formParameters.add("scope", scope);

return formParameters;
Expand Down

0 comments on commit 6c73ab3

Please sign in to comment.