Google Reader API Feed 的项目数

发布于 2024-10-03 22:53:48 字数 527 浏览 6 评论 0原文

我的 Google 阅读器帐户中有一个名为 Test 的文件夹,其中有 200 个项目。我只想一次收集 20 个项目。

根据 docs 我可以将 ?n=20 或 ?count=20 添加到获取前 20 项的 url。但是当我使用此链接 http://www.google .com/reader/atom/user/-/label/Test?count=20http://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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

攒一口袋星星 2024-10-10 22:53:48

试试这个。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文