You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to specify Fiddler as a proxy so I can inspect the requests and responses easier. I need to specify localhost:7777 as a proxy. However, this doesn't allow proxy parameters, even though Net::HTTP does. The docs say you can provide a http: {} hash but the options to the linked method are only about certificates. The proxy host and proxy port are given by the 3rd and 4th arguments, and you can't specify them via a hash of options.
If you want to use this proxy for the whole app, it might be easier to use "http_proxy" environment variable, since it is automatically picked up by Net::HTTP and other networking libraries.
I'd like to specify Fiddler as a proxy so I can inspect the requests and responses easier. I need to specify localhost:7777 as a proxy. However, this doesn't allow proxy parameters, even though Net::HTTP does. The docs say you can provide a
http: {}
hash but the options to the linked method are only about certificates. The proxy host and proxy port are given by the 3rd and 4th arguments, and you can't specify them via a hash of options.https://ruby-doc.org/stdlib-2.4.0/libdoc/net/http/rdoc/Net/HTTP.html#start-method
The text was updated successfully, but these errors were encountered: