Bug report
Need Feign to use proxy with credentials and defining something like this:
@Bean
public Client feignClient() {
return new Client.Proxied(null, null,
new Proxy(Proxy.Type.HTTP,
new InetSocketAddress(proxyHost, Integer.parseInt(proxyPort))),
proxyUsername, proxyPassword);
}
But in the end the Proxy-Auth header is not sent, proxy is used though.
Comment From: OlgaMaciaszek
Hello, @justSomeo. There's no Spring Cloud OpenFeign integration code used in the snippet you've provided. You should probably create your issue in the Feign repository.