-
Notifications
You must be signed in to change notification settings - Fork 300
Open
Labels
Description
HTTPClient does not appear to support SOCKS proxies unless I'm missing something blatantly obvious. Works fine with rest-client as:
RestClient.proxy = "http://username:password@proxy.domain"
response = RestClient.get(url)
Attempting to do the same with HTTPClient as below results in an "invalid" response which I believe is coming from the proxy.
client = HTTPClient.new("http://username:password@proxy.domain")
client.get(url)