从带有 C++ 的 URL 下载
多年来我第一次尝试 C++。使用 Qt 和 Qt IDE 制作应用程序。我想制作一个与 Flickr API 集成的应用程序。我已经到了需要调用 URL 的地步。
Flickr API:
那么.....我习惯了.NET,所以这通常是简单的。 Qt 中是否内置了某些功能可以让我执行此操作,或者我是否需要 C++ Web API。如果我确实需要 API,您能否推荐一个可以完成这项工作的 API。
亲切的问候
I'm playing around with C++ for the first time in years. Making an app using Qt, with the Qt IDE. I want to make an app to integrate with the Flickr API. I've got to the point where i need to make a call to a URL.
Flickr API:
Right then ..... I'm used to .NET so this would normally be easy. Is there something built into Qt to allow me to do this or do i need a C++ web API. If I do need an API can you recommend one that would do the job.
Kind Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用QNetworkAccessManager。该页面有一个示例。
Use QNetworkAccessManager. The page has an example.
我们确实使用了 Qt,但最终在类似的项目中使用了 libCURL (http://curlpp.org/) 的 cURLpp C++ 包装器。
we do use Qt but ended up using the cURLpp C++ wrapper for libCURL (http://curlpp.org/) for a similar project.