我可以使用 glib 发出一些可移植的 http GET 请求吗?如何?
只是想知道你们中是否有人已经使用 glib 编写了 http get 请求? 这可能吗?如何实现?
我只想调用一个带参数的简单网址,并且代码必须在 gnu/linux、windows 和 mac 上运行。
如果 glib 无法做到这一点,您是否有关于为此目的使用什么的建议(从可移植的角度来看)。 我想尽可能避免使用第三方库,以最大限度地减少我的项目依赖性。因此,在这种情况下,glib 不是正确的方法,任何代码片段都将受到欢迎!
谢谢 辛恩
Was just wondering if any of you already coded a http get request using glib?
Is it possible and how ?
I just want to call an simple urls with parameters, and the code must be working on gnu/linux, windows and mac.
If it is not possible with glib, have you any suggestion about what to use for that purpose (in a portable perspective).
I want to avoid if possible 3rd party libs to minimize my project dependencies. So in that case of glib is not the right way, any code fragment will be welcome !
Thanks
Sinn'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 libsoup。它是 GNOME 的一部分,设计用于与 GLib 一起使用。您可以从操作方法开始。例如,它展示了如何创建基本的 GET 请求:
Yes, you can use libsoup. It's part of GNOME, and designed for use with GLib. You can start with the howto. E.g. it shows how to create a basic GET request: