On April 1, 2021, we are moving all of our QuotaGuard Support Documentation to
https://quotaguard.github.io/qg-docs/
Please Update Your Support Bookmarks
Documentation for this article will be maintained at
https://quotaguard.github.io/qg-docs/quickstart-ruby
Please click on the above link to ensure you are reading
the most recent and updated documentation.
HTTParty is a Ruby library for making HTTP requests and integrates easily with QuotaGuard:
The following code snippet will print out one of your Static IP addresses.
require 'httparty' proxy = URI(ENV["STATICA_URL"]) options = {http_proxyaddr: proxy.host,http_proxyport:proxy.port, http_proxyuser:proxy.user, http_proxypass:proxy.password} response = HTTParty.get('http://ip.jsontest.com/',options) puts response.body, response.code, response.message, response.headers.inspect
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 one sent to you.
Working with sensitive data, like HIPAA, Financial, or Personally Identifiable Information (PII)?
Then you will want to check out our QuotaGuard Shield solution, it's the same as QuotaGuard Static, but with stronger end to end security for your requests. We can also help migrate current Static customers to Shield for free, just reach out to us at Support to request assistance.