Google Reader API 未显示所有结果

发布于 2024-11-26 14:35:04 字数 725 浏览 0 评论 0原文

我正在使用 Google reader API 获取任何 RSS feed 的所有可用项目。我使用它的方式如下:

http://www.google.com/reader/atom/feed/[RSS 提要链接]?n=[要显示的项目数量]&r=o&ot=[UNIX 时间戳开始日期]

据我了解,这应该返回以时间戳指定的日期开始的所有项目(开始日期不应早于一个月前)。它对于某些提要非常有用,但在大多数提要中,它不会显示所有可用的项目(尽管它们在使用 Google 阅读器时可用)。

例如:

http://www.google.com/reader/atom/feed/http://www.360cities.net/rss/area/Greece.rss?n=1000&r=o&ot= 1306959543

此链接仅显示从 24-07-2011 开始至今的项目,尽管它应该显示从2011 年 6 月 26 日。如果 Google Reader 阅读相同的链接 (http://www.360cities.net/rss/area/Greece.rss),它会显示更多结果。

有什么解决办法吗?

I'm using Google reader API to get all available items for any RSS feed. I use it as follows:

http://www.google.com/reader/atom/feed/[RSS FEED LINK]?n=[NUMBER OF ITEMS TO SHOW]&r=o&ot=[UNIX TIME STAMP FOR START DATE]

As I understand, this should return all items starting with the date specified by the time stamp (start date should not be older than one month ago). It works great for some feeds, but in most feeds, it doesn't show all available items (although they are available when using Google Reader).

For Example:

http://www.google.com/reader/atom/feed/http://www.360cities.net/rss/area/Greece.rss?n=1000&r=o&ot=1306959543

this link only shows items starting with 24-07-2011 to current date although it should show items starting with 26-06-2011. If the same link (http://www.360cities.net/rss/area/Greece.rss) is read by Google Reader, it'll show much more results.

Have any solutions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

⒈起吃苦の倖褔 2024-12-03 14:35:04

幸运的是,经过大量研究,我找到了解决问题的方法:

  • 此表单中的 url 返回 RSS Feed 的最新 N 项

    http://www.google.com/reader/atom/feed/[RSS]?n=[N]

    [N] = 要显示的项目数(最多:1000)。

    [RSS] = RSS 提要的 URL。

  • 要获取接下来的 N 个旧项目,应使用另一个名为Continuation String 的参数。它可以在每个结果页面的 gr:continuation 标记内找到。因此,要获取 N 个较旧的项目,应使用以下形式的 url:

    http://www.google.com/reader/atom/feed/[RSS]?n=[N]&c=[C]

    [N] = 要显示的项目数(最多:1000)。

    [RSS] = RSS 提要的 URL。

    [C] = 延续字符串

示例:

我希望这会对某人有所帮助。

谢谢

Fortunately, I found the solution to my problem after a lot of research:

  • A url in this form returns the most recent N items of the RSS Feed

    http://www.google.com/reader/atom/feed/[RSS]?n=[N]

    [N] = Number of items to be displayed (max: 1000).

    [RSS] = The url for the rss feed.

  • To get the next N older items, another parameter called Continuation String should be used. It can be found inside gr:continuation tag in each results' page. So, To get the N older items, a url in this form should be used:

    http://www.google.com/reader/atom/feed/[RSS]?n=[N]&c=[C]

    [N] = Number of items to be displayed (max: 1000).

    [RSS] = The url for the rss feed.

    [C] = Continuation string

Example:

I hope this would help someone.

Thanks

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