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.
This example assumes your QUOTAGUARDSTATIC_URL environment variable is set and contains your unique connection string.
To access an HTTP API you can use the standard HTTP library in Node.js but must ensure you correctly set the “Host” header to your target hostname, not the proxy hostname.
var http, options, proxy, url; http = require("http"); url = require("url"); proxy = url.parse(process.env.QUOTAGUARDSTATIC_URL); target = url.parse("http://ip.jsontest.com/"); options = { hostname: proxy.hostname, port: proxy.port || 80, path: target.href, headers: { "Proxy-Authorization": "Basic " + (new Buffer(proxy.auth).toString("base64")), "Host" : target.hostname } }; http.get(options, function(res) { res.pipe(process.stdout); return console.log("status code", res.statusCode); });
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.