GO自带的http不太能满足需求(多次重定向导致错误,python的requests没这个问题),没时间折腾,在网上搜了几个可用的http模块:
github.com/zhshch2002/goreq
github.com/go-resty/resty/
github.com/asmcos/requests
最后选择使用了goreq:
问题解决:
当项目不是go 模块时,需要先go mod init yourName,然后在go get 安装 或者 go install
GO自带的http不太能满足需求(多次重定向导致错误,python的requests没这个问题),没时间折腾,在网上搜了几个可用的http模块:
github.com/zhshch2002/goreq
github.com/go-resty/resty/
github.com/asmcos/requests
最后选择使用了goreq:
问题解决:
当项目不是go 模块时,需要先go mod init yourName,然后在go get 安装 或者 go install