在 Buzz API 中使用分页时出现问题?

发布于 2024-12-02 04:12:02 字数 568 浏览 0 评论 0原文

我正在使用 Buzz REST API 检索从 1-08-2011 到 28-082011 的所有嗡嗡声公共更新,我的查询术语是“lokpal”。我需要获取人们对这个主题或带有标签“Anna Hazere”的任何其他活动所做的所有更新。我准备的 URL 是:

    REST GET URL
    https://www.googleapis.com/buzz/v1/activities/search?key=AIzaSyD7O9D4uEFyEexRPtxaU1fCsh0yu5leum4&q=lokpal+date%3E2011-07-31+date%3C2011-08-28&alt=json&max-results=100&safe=medium

where %3E refers to '>'  and %3C refers to '<' . 

有人可以建议我如何对此应用分页属性并检索公共流中发生的所有更新。我已经能够获取 JSON 格式的活动,但想要所有公共更新。

参考:http://code.google.com/apis/buzz/v1/using_rest.html

I am using Buzz REST API to retrieve all the buzz public updates from 1-08-2011 to 28-082011 and my query term is 'lokpal'. I need to get all the updates that people did about this topic or any other activity with tag 'Anna Hazere'. I have prepared the URL that is:

    REST GET URL
    https://www.googleapis.com/buzz/v1/activities/search?key=AIzaSyD7O9D4uEFyEexRPtxaU1fCsh0yu5leum4&q=lokpal+date%3E2011-07-31+date%3C2011-08-28&alt=json&max-results=100&safe=medium

where %3E refers to '>'  and %3C refers to '<' . 

Can someone suggest me how to apply paging property to this and also retrieve all the updates that happened ion public stream. I am already able to get the activities in JSON format but want all the public updates.

Refer:http://code.google.com/apis/buzz/v1/using_rest.html

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

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

发布评论

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

评论(1

骑趴 2024-12-09 04:12:02

响应正文中有一个 links 结构。其中一个链接是 next 链接,它是第 2 页的 URL。在您的情况下,这将是:

https://www.googleapis.com/buzz/v1/activities/search?q=lokpal+date%3E2011-07-31+date%3C2011-08-28&alt=json&max-results=100&c=100

Within the body of the response is a links structure. One of the links is the next link, which is the URL for page 2. In your case, that would be:

https://www.googleapis.com/buzz/v1/activities/search?q=lokpal+date%3E2011-07-31+date%3C2011-08-28&alt=json&max-results=100&c=100
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文