Go 语言有 libCURL 绑定吗
我在网上搜索了 Go 语言的 libCURL 绑定,但没有找到任何...我还检查了 curl .haxx.se 对于 Go 没有成功的绑定列表。网上有这样的项目吗?
如果这样的绑定不存在,那么有任何替代库,或者您可以提供一些提示,我如何实现我自己的 libCURL 绑定?
谢谢
I have searched web for libCURL bindings for Go language, but failed to find any... I also checked curl.haxx.se list of bindings with no success for Go. Are there any such project on net?
If such binding don't exists are where any alternative libraries or maybe you could provide some hints how I could implement my own bindings of libCURL?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我发现 Cgo 实用程序:“Cgo 允许创建调用 C 代码的 Go 包”。我将尝试为 Go 创建 libCURL 包装器。
更新:
创建了 github 存储库 gocurl。
Easy 界面的初始版本,尚未运行。但这只是一个开始:)
更新2:
找到了更好的实现go-curl
I found Cgo utility: "Cgo enables the creation of Go packages that call C code". I will try to create my wrapper of libCURL for Go.
UPDATED:
Created github repository gocurl.
Initial version of Easy interface, not working yet. But it's a start :)
UPDATED 2:
Found better implementation go-curl
我倾向于只使用 http.Client 它为我做了足够的事情而不需要 Curl:
http://golang .org/pkg/http/#Client
I tend to just use http.Client which does enough stuff for me not to need Curl:
http://golang.org/pkg/http/#Client