Golang Quick Start Guide for QuotaGuard Static IP’s

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.