在您希望避免使用主IP 位址進行HTTP 要求的情況下,Go 提供了一種指定來源位址的方法。
要實現此目的,您可以在客戶端的 Transport 中建立自訂撥號器。具體實現如下:
// Create a transport based on http.DefaultTransport, but with a custom localAddr transport := &http.Transport{ Proxy: http.ProxyFromEnvironment, DialContext: (&net.Dialer{ Timeout: 30 * time.Second, KeepAlive: 30 * time.Second, LocalAddr: localAddr, // Set the desired local IP address here DualStack: true, }).DialContext, MaxIdleConns: 100, IdleConnTimeout: 90 * time.Second, TLSHandshakeTimeout: 10 * time.Second, ExpectContinueTimeout: 1 * time.Second, } // Create an HTTP client using the custom transport client := &http.Client{ Transport: transport, }
透過設定 Dialer 的 LocalAddr 字段,您可以指定客戶端發出的 HTTP 請求所使用的來源 IP 位址。
以上是如何在Go中自訂HTTP請求的來源IP位址?的詳細內容。更多資訊請關注PHP中文網其他相關文章!