Google reader API 获取单个项目
我正在尝试从 google reader api 检索单个选定的项目。我是否可以进行 api 调用来通过 ID 获取项目,或者我是否必须访问该项目 feed 并从那里获取它?
I am trying to retrive a single selected item from the google reader api. Is there an api call I can make to get an item by Id or do I have to access that items feed and get it from there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 POST 来 http://www.google.com/reader /api/0/stream/items/contents 使用 i= 作为输入(您可以重复 i= 参数来获取多个项目内容)。
下面是一个示例curl调用:
输出格式默认为JSON,您可以添加output=atom参数将其切换为Atom。
You can use POST to http://www.google.com/reader/api/0/stream/items/contents using i= as the input (you can repeat the i= parameter to get multiple item contents).
Here's a sample curl invocation:
The output format is JSON by default, you can add a output=atom parameter to switch it to Atom.