Authz client not updated with the way of encoding the basic header

Closes #15086
This commit is contained in:
Pedro Igor 2022-10-21 10:23:21 -03:00 committed by Marek Posolda
parent 55c514ad56
commit 712656765e

View file

@ -85,7 +85,7 @@ public class Configuration extends AdapterConfig {
throw new RuntimeException("Client secret not provided.");
}
requestHeaders.put("Authorization", BasicAuthHelper.createHeader(getResource(), secret));
requestHeaders.put("Authorization", BasicAuthHelper.RFC6749.createHeader(getResource(), secret));
}
};
}