Reactor Netty HttpClient does not provide a shortcut for setting this header. You should do it by yourself:
HttpClient.create().baseUrl(...).headers(h -> h.set("Authorization", "Basic " + encodedCredentials))
CLICK HERE to find out more related problems solutions.