Skip to content

Commit

Permalink
Authz client not updated with the way of encoding the basic header
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroigor authored and mposolda committed Oct 24, 2022
1 parent 55c514a commit 7126567
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void configureClientCredentials(Map<String, List<String>> requestParams,
throw new RuntimeException("Client secret not provided.");
}

requestHeaders.put("Authorization", BasicAuthHelper.createHeader(getResource(), secret));
requestHeaders.put("Authorization", BasicAuthHelper.RFC6749.createHeader(getResource(), secret));
}
};
}
Expand Down

0 comments on commit 7126567

Please sign in to comment.