Encode username/passwrod pair instead of decoding it while creating request.

This commit is contained in:
devaskim 2025-02-09 17:32:36 +05:00 committed by GitHub
parent 17bd5cc792
commit 0cda72e6b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -347,7 +347,7 @@ public class TbHttpClient {
if (CredentialsType.BASIC == credentials.getType()) { if (CredentialsType.BASIC == credentials.getType()) {
BasicCredentials basicCredentials = (BasicCredentials) credentials; BasicCredentials basicCredentials = (BasicCredentials) credentials;
String authString = basicCredentials.getUsername() + ":" + basicCredentials.getPassword(); String authString = basicCredentials.getUsername() + ":" + basicCredentials.getPassword();
String encodedAuthString = new String(Base64.getDecoder().decode(authString.getBytes(StandardCharsets.UTF_8))); String encodedAuthString = new String(Base64.getEncoder().encode(authString.getBytes(StandardCharsets.UTF_8)));
headers.add("Authorization", "Basic " + encodedAuthString); headers.add("Authorization", "Basic " + encodedAuthString);
} }
} }