Google feed api 与 iPhone/Objective C 集成
我正在构建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用“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