Go 语言有 libCURL 绑定吗

发布于 2024-11-27 15:31:50 字数 235 浏览 1 评论 0原文

我在网上搜索了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

水水月牙 2024-12-04 15:31:50

我发现 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

一梦等七年七年为一梦 2024-12-04 15:31:50

我倾向于只使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文