Google Reader API:流/项目/ID 的延续
有什么方法可以像 /api/0/stream/contents/
一样获得 /api/0/stream/items/ids
的 continuation
吗?
如果不是,我如何获取流的下一个项目 ID?或者有什么方法可以将 item-id/timestamp 转换为延续?
Is there any way to get continuation
for /api/0/stream/items/ids
like /api/0/stream/contents/
?
If no, how can I get next item-ids of a stream? Or is there any way to convert item-id/timestamp to continuation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
/api/0/stream/items/ids
端点支持nt
参数,您可以使用该参数获取越来越旧的项目。您可以获取已有的最旧项目的时间戳(以微秒为单位),将其转换为秒,然后将其作为 ot 参数传递。有关完整列表,请参阅此页支持的参数。The
/api/0/stream/items/ids
endpoint supports annt
parameter that you can use to get increasingly older items. You can take the timestamp (in microseconds) of the oldest item that you already have, convert it to seconds, and then pass it in as a theot
parameter. See this page for the full list of parameters that are supported.