Google Reader API - 获取提要
有谁知道用户是否可以调用 Google Reader 服务来获取属于特定标签/类别的所有提要的名称/uri?谢谢!
Does anyone know if there is a Google Reader service call that a user can make to get the name/uri of all feeds that fall under a certain label/category? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下代码的变体来访问 Google 阅读器系统。您需要在每个请求中发送标头(“Authorization”、“auth=”+myauthvar)。为了编辑项目,您将需要令牌,我也在下面演示了该令牌。获得身份验证 ID 后,您可以将其发布(标头完好无损)到
http://www.google.com/reader/api/0/subscription/list?output=xml
以返回完整的订阅列表。You can use a variation of the code below to get access to the Google Reader system. You need to send the header ("Authorization", "auth=" +myauthvar) with each request. In order to edit items you will need the token which I also demo below. Once you have the auth id you can post (with that header intact) to
http://www.google.com/reader/api/0/subscription/list?output=xml
in order to return the full subscription listing.