从带有 C++ 的 URL 下载

发布于 2024-09-28 15:20:08 字数 634 浏览 1 评论 0原文

多年来我第一次尝试 C++。使用 Qt 和 Qt IDE 制作应用程序。我想制作一个与 Flickr API 集成的应用程序。我已经到了需要调用 URL 的地步。

Flickr API

http: //flickr.com/services/rest/?method=flickr.people.getInfo&api_key=987654321&auth_token=9765984&api_sig=8f3870be274f6c49b3e31a0c6728957f

那么.....我习惯了.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:

http://flickr.com/services/rest/?method=flickr.people.getInfo&api_key=987654321&auth_token=9765984&api_sig=8f3870be274f6c49b3e31a0c6728957f

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 技术交流群。

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

发布评论

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

评论(2

流星番茄 2024-10-05 15:20:08

使用QNetworkAccessManager。该页面有一个示例。

Use QNetworkAccessManager. The page has an example.

春风十里 2024-10-05 15:20:08

我们确实使用了 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.

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