httpx/examples/proxy_get.rb
2017-12-22 09:53:11 +02:00

17 lines
346 B
Ruby

require "httpx"
include HTTPX
# supports HTTP/1 pipelining and HTTP/2
URLS = %w[http://nghttp2.org https://nghttp2.org/blog/]# * 3
client = HTTPX.plugin(:proxy)
client = client.with_proxy(uri: "http://61.7.174.110:54132")
responses = client.get(URLS)
puts responses.map(&:status)
# response = client.get(URLS.first)
# puts response.status