Skip to content

通用代理设置

bit_he edited this page May 15, 2022 · 3 revisions

如果本地和交易所API不通,请在调用代码前手动设置代理

(这个设置方法 rest api 或者 websocket通用)

不要用系统代理或者ide设置代理,这样很可能代码无法通过代理访问。

假如本地socks5代理是socks5://127.0.0.1:1080 ,go代码加入:

os.Setenv("HTTPS_PROXY", "socks5://127.0.0.1:1080")
Clone this wiki locally