I am trying to control a keep-alives session to reuse the tcp connection by creating Trasport.
Here is my snippet, and I'm not sure how to add header information for authentication.
url := "http://localhost:8181/api/v1/resource"
tr := &http.Transport{
DisableKeepAlives: false,
MaxIdleConns: 0,
MaxIdleConnsPerHost: 0,
IdleConnTimeout: time.Second * 10,
}
client := &http.Client{Transport: tr}
resp, err := client.Get(url)
source
share