本机 Google Reader iPhone 应用程序
我目前正在构建一个本机 Google Reader iPhone 应用程序,类似于成功的应用程序“Reeder for iPhone”,但也内置了完整的 Twitter 客户端。
我已经完成了 Twitter 客户端,现在正在努力启动 Google Reader 客户端。我浏览了多个文档并查看了 gdata-objective-client 示例,但我似乎仍然无法理解我必须做什么才能完成与 Reeder 相同的功能。
基本上我希望能够向用户展示登录屏幕。然后,用户提交他们的凭据和访问令牌,所有这些都是在幕后完成的,就像使用 Twitter 的 xAuth 一样。然后我想推送一个视图控制器,显示一个包含所有当前未读提要的 UITableView。当用户单击 UITableViewCell 时,将分别推送包含帖子内容的详细视图。
这可能吗?如果可以,我该如何实现这些功能?如果人们发布“代码片段”并实际展示他们如何实现实现,我将不胜感激。
提前致谢!
编辑:我注意到不需要谷歌应用程序引擎。然而问题仍然是一样的。如何在我的应用程序中实施 Google Reader?
I am currently in the process of building a native Google Reader iPhone application similar to the successful application "Reeder for iPhone", however, with a full Twitter client inbuilt as well.
I have finished the Twitter client and am now struggling to start the Google Reader client. I've browsed through multiple documents and have taken a look at the gdata-objective-client samples, yet I still can't seem to understand what I have to do to accomplish the same functionality as Reeder does.
Basically I want to be able to present the user with a login screen. The user then submits their credentials and the access token and all of that are done behind scenes, like they do with Twitter's xAuth. I then want to push a view controller that shows a UITableView with all the current unread feeds. When the user clicks the UITableViewCell a detailed view is respectively pushed containing the posts content.
Is this possible and if so, how do I go about implementing these features? I would appreciate it if people posted "code snippets" and actually show how they achieve the implementations.
Thanks in advance!
EDIT: It has been brought to my attention that the google app engine isn't needed. The question however, still remains the same. How would I implement Google Reader into my application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
就是这么简单。对于所有想知道连接到 Google Reader API 的人,我执行了以下操作。
显然,我使用了自己的代表等,但这就是我给我的应用程序带来的总体想要/感觉。
我目前正在努力将未读的提要/项目拉入 UITableView 中以显示在我的 RootViewController 中。我将用更多信息更新此内容。
感谢所有试图提供帮助的人:D
It was so simple. For all those wondering, to connect to Google Reader API, I did the following.
Obviously I used my own delegates and such, but that is the overall want/feel that I brought to my application.
I'm currently working on pulling the unread feeds/items into a UITableView to display in my RootViewController. I'll update this with more information.
Thanks to all those that tried to help :D
谢谢。我知道有一种简单的登录方法,但我花了很长时间才弄清楚。顺便说一句,对于那些复制/传递上面 the0rkus 代码的人来说 - 你会得到一些错误。为了测试它,我添加了:
THANK YOU. I knew there was a simple way to log in, but I was having a horrible time figuring it out. Btw for those of you who are copying/pasing the the0rkus's code above - you'll get a few errors. To test it out I added:
Google 一下,有很多博客介绍如何使用 Google Reader API。这是一个不错的起点:
http://mindsharestrategy.com/google-reader-api-a-brief-教程/
Google it, there are lots of blogs out there that describe how to use the Google Reader API. Here's a decent starting point:
http://mindsharestrategy.com/google-reader-api-a-brief-tutorial/