Google Reader API 未读计数
Google Reader 是否有 API?如果有,我如何获取知道其用户名和密码的特定用户的未读帖子数?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Google Reader 是否有 API?如果有,我如何获取知道其用户名和密码的特定用户的未读帖子数?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
此 URL 将为您提供每个提要的未读帖子数。 然后,您可以迭代提要并对计数求和。
http://www.google.com/reader/api/ 0/unread-count?all=true
这是 Python 中的一个极简示例...解析 xml/json 并对计数求和留给读者作为练习:
以及有关该主题的一些其他链接:
This URL will give you a count of unread posts per feed. You can then iterate over the feeds and sum up the counts.
http://www.google.com/reader/api/0/unread-count?all=true
Here is a minimalist example in Python...parsing the xml/json and summing the counts is left as an exercise for the reader:
And some additional links on the topic:
就在那里。 但仍处于测试阶段。
It is there. Still in Beta though.
以下是此答案的更新
Google 阅读器在 6 月份左右删除了 SID 身份验证,2010(我认为),使用来自 ClientLogin 的新身份验证是新方法,而且它更简单(标头更短)。 您必须在请求
Auth
的数据中添加service
,我注意到如果您不发送service=,则不会返回
。Auth
阅读器您可以在此帖子中详细了解身份验证方法的更改。
Here is an update to this answer
Google Reader removed SID auth around June, 2010 (I think), using new Auth from ClientLogin is the new way and it's a bit simpler (header is shorter). You will have to add
service
in data for requestingAuth
, I noticed noAuth
returned if you don't send theservice=reader
.You can read more about the change of authentication method in this thread.
在 [1] 中发布的 API 中,“令牌”字段应为“T”
[1] http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI
In the API posted in [1], the "token" field should be "T"
[1] http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI