You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 3 Next »
Proxy
HTTP客户端发起请求时可以设置代理服务器地址proxyURL,该该特性使用SetProxy*相关方法实现。代理主要支持http和socks5两种形式,分别为http://USER:PASSWORD@IP:PORT或socks5://USER:PASSWORD@IP:PORT形式。
proxyURL
SetProxy*
http://USER:PASSWORD@IP:PORT
socks5://USER:PASSWORD@IP:PORT
方法列表:
func (c *Client) SetProxy(proxyURL string) func (c *Client) Proxy(proxyURL string) *Client
我们来看下客户端设置proxyURL的示例。
使用SetProxy配置方法。
SetProxy
client := g.Client() client.SetProxy("http://127.0.0.1:1081") client.SetTimeout(5 * time.Second) response, err := client.Get("https://api.ip.sb/ip") if err != nil { fmt.Println(err) } response.RawDump()
使用Proxy链式方法。
client := g.Client() response, err := client.Proxy("http://127.0.0.1:1081").Get("https://api.ip.sb/ip") if err != nil { fmt.Println(err) } fmt.Println(response.RawResponse())