Initiating httpclient Ruby Gem & QG Static IP’s
Table of contents
httpclient is a Ruby gem allowing you to execute HTTP commands.
You can route these commands easily via a Static IP by integrating with QuotaGuard:
require 'httpclient'
quotaguard = URI(ENV["QUOTAGUARD_URL"])
proxy_url = quotaguard
client = HTTPClient.new(proxy_url)
prx_user = quotaguard.user
prx_password = quotaguard.password
client.set_proxy_auth(prx_user, prx_password)
res = client.get("http://ip.jsontest.com/")
puts res.body
We have examples for other common libraries as well, but if you can’t find what you are looking for just send us a Support ticket and we’ll get the right one sent to you.