Merge pull request #12651 from thingsboard/fix/http-basic-auth
Fix Basic auth in REST API call node
This commit is contained in:
		
						commit
						3eaa885f89
					
				@ -343,7 +343,7 @@ public class TbHttpClient {
 | 
			
		||||
        if (CredentialsType.BASIC == credentials.getType()) {
 | 
			
		||||
            BasicCredentials basicCredentials = (BasicCredentials) credentials;
 | 
			
		||||
            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);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user