“取消主演” 使用 Google Reader API 的帖子
有谁知道如何使用其非官方 API 删除 Google Reader 中加星标的文章的星标?
我找到了这个,但它不起作用:
http:// /www.niallkennedy.com/blog/2005/12/google-reader-api.html
Python中的pyrfeed模块也没有,我每次都会得到IOError异常。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用:
而不是
调用 edit-tag 时。
Try using:
instead of
when invoking edit-tag.
我没有这方面的Python代码(我有Java),但是你遇到的问题几乎与你使用的语言无关,并且能够在你需要的地方看到一些代码总是好的所有细节。 您只需按照我的要求进行操作,并验证我强调的一些细节,并检查这是否是您的问题。
您可以使用它来删除给定帖子的星号(请注意,如果需要,该服务同时支持多个项目):
您可以在其他问题了解更多实现细节(评论中提到的细节)。
要列出 Feed 中所有已加星标的项目,您可以使用 http:// /www.google.com/reader/api/0/stream/items/ids 或 http://www.google.com/reader/atom/user/-/state/com.google/starred 。 您可以使用这些 id 调用上述 API 来移除星星。
最后两个更容易使用。 您可以在这些非官方(但结构良好)资源上查看 API 的详细信息:http://www.chrisdadswell.co.uk/android-coding-example-authenticating-clientlogin-google-reader-api/ 、 http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI , http://blog.martindoms.com/2009/10/16 /using-the-google-reader-api-part-2
希望有帮助!
I don't have Python code for this (I have Java), but the problem you're stumbling with is pretty much independent from the language you use, and it is always good to be able to see some code where you need to have all the details. You just need to do the requests I do, and verify some of the details I highlight and check if it might be your problem.
You can use this to remove the star for a given post (note that this service supports more than one item at the same time if you need that):
You can check my answer in this other question for some more implementation details (the ones referred to on the comments).
To list all the starred items inside a feed, you can use http://www.google.com/reader/api/0/stream/items/ids or http://www.google.com/reader/atom/user/-/state/com.google/starred . You can use these ids to call the above mentioned API for removing the star.
These last 2 are a lot easier to use. You can check details on the API on these unoffical (but nicely structured) resources: http://www.chrisdadswell.co.uk/android-coding-example-authenticating-clientlogin-google-reader-api/ , http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI , http://blog.martindoms.com/2009/10/16/using-the-google-reader-api-part-2
Hope it helps!