Google Reader API Feed 的项目数
我的 Google 阅读器帐户中有一个名为 Test 的文件夹,其中有 200 个项目。我只想一次收集 20 个项目。
根据 docs 我可以将 ?n=20 或 ?count=20 添加到获取前 20 项的 url。但是当我使用此链接 http://www.google .com/reader/atom/user/-/label/Test?count=20 或 http://www.google.com/reader/atom/user/-/label/Test?n=20 我得到了全部 200 个。
I have a folder in my Google Reader account called Test, with 200 items in. I only want to collect 20 items at a time.
According to the docs I can add ?n=20 or ?count=20 to the url to get the first 20 items. But when I use this link http://www.google.com/reader/atom/user/-/label/Test?count=20 or http://www.google.com/reader/atom/user/-/label/Test?n=20 I get all 200.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个。
https://www.google.com/reader/api/0/stream/contents/user/-/label/Test?ot=[纪元时间]&r=a&xt=user/-/state/com。 google/read&n=20&ck=[epoch time]&client=web
ot= 是您想要的最旧文章的时间。时间-(日*86400)
r= 排序顺序 a=magic n=desc o=asc
xt=要排除的内容,上面排除已读文章,空白返回所有内容。
n=要返回的文章数
ck= 不太确定,我输入了当前纪元时间并且它有效
client= 字符串来标识所使用的客户端。
Try this one.
https://www.google.com/reader/api/0/stream/contents/user/-/label/Test?ot=[epoch time]&r=a&xt=user/-/state/com.google/read&n=20&ck=[epoch time]&client=web
ot= is the time of the oldest article you want. time-(day*86400)
r= sort order a=magic n=desc o=asc
xt= what to exclude, the above excludes read articles, blank returns everything.
n= the number of articles to return
ck= not really sure, I put in the current epoch time and it works
client= string to identify client used.