0
Golang的包淨/ HTTP /傳輸可以自動設置Proxy-Authorization
頭在Golang淨/ HTTP /運輸代理CONNECT方法頭支撐
func (t *Transport) dialConn(ctx context.Context, cm connectMethod) (*persistConn, error)
像
proxyURL, _ := url.Parse("http://username:[email protected]")
client := http.Client{Transport: &http.Transport{Proxy:http.ProxyURL(proxyURL)}}
但我需要提交X標頭到代理服務器。如何自定義傳輸CONNECT方法請求標頭?
這是行不通的,因爲'request.Header'將不會安裝到** ** CONNECT請求。 – Jonathan
我想代理服務器在使用'CONNECT'時不能'看到'請求頭,請點擊這裏:https://stackoverflow.com/questions/10369679/do-http-proxy-servers-modify-request-packets – jsxqf