Here are some useful links on how to use postman and proxies:

 

For GoLang, you can setup a per-request proxy in the http package like this:

proxyUrl, err := url.Parse("http://username:password@proxy.quotaguard.com:9293")
myClient := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyUrl)}}

 

Or you can configure it for all requests like this:

 

proxyUrl, err := url.Parse("http://username:password@proxy.quotaguard.com:9293")
http.DefaultTransport = &http.Transport{Proxy: http.ProxyURL(proxyUrl)}

 

We love GoLang, unfortunately, we don’t have a lot of customers that have used QuotaGuard with Golang, so we don’t have as many examples to share, but if you are using it, please let us know so we can help get everything setup together and make sure it works for you just as you need.

 

If you have questions, or if this solution doesn’t work or fit your use case, please reach out to us at Support so we can help figure it out with 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.