Google feed api 与 iPhone/Objective C 集成

发布于 2024-12-07 07:22:25 字数 523 浏览 0 评论 0原文

我正在构建一个 RSS 阅读器。一些现有的(例如,iPhone/iPad 版 Pulse News)有一个搜索框,您可以在其中搜索某个术语(例如“体育”),它将返回与您的搜索条件匹配的提要列表。因此,在此示例中,您输入“sports”,它会进行搜索,然后返回 ESPN.com 的新闻源 Yahoo! 。

经过初步研究,我发现Google feed API也做了同样的事情 https://code.google.com/intl/ fr/apis/ajaxfeeds/documentation/reference.html#findFeeds

但是,我不知道如何使用 google feed api。它返回我需要解析的 xml,但我感到困惑的部分是如何调用 API 以及在哪里捕获 xml 响应。有人可以发布教程或提供有关如何集成它的帮助吗?

I am building an RSS Reader. Some of the existing ones out there (for example, Pulse News for iPhone/iPad) have a search box where you can search for some term (example - "sports") and it will return a list of feeds that match your search criteria. So in this example, you type in "sports", and it searches and then comes back with ESPN.com's news feed, Yahoo! Sports' news feed, etc. etc.

After initial research, I found out that Google feed API does the same.
https://code.google.com/intl/fr/apis/ajaxfeeds/documentation/reference.html#findFeeds

However, I cant figure out how to use the google feed api. It returns the xml that i need to parse but the part I am confused is how to call the API and where to catch the xml response. Can some one post a tutorial or some help on how to integrate it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

孤寂小茶 2024-12-14 07:22:25

使用“Google Feed API”本身找到了合适的解决方案。他们还有一个 JSON API(哇!!),它会返回任何触发的查询的 JSON 文件。
这是链接:
https://ajax.googleapis.com/ajax/services /feed/find?v=1.0&q=

例如:
https://ajax.googleapis.com/ajax/ services/feed/find?v=1.0&q=新闻

Found a suitable solution with "Google Feed API" itself. They also have a JSON API(wow!!) which returns the JSON file for any query fired..
Here is the link:
https://ajax.googleapis.com/ajax/services/feed/find?v=1.0&q=

e.g:
https://ajax.googleapis.com/ajax/services/feed/find?v=1.0&q=News

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