Google Buzz API - 如何访问我的全部关注者? - 谷歌错误

发布于 2024-11-25 19:34:10 字数 422 浏览 1 评论 0原文

在 Google Buzz API 中,我需要获取所有关注者。假设我有 1000 个关注者。但是googleuzz api只允许我获得100个关注者,API中没有分页变量。我只能将 max-results 设置为 100。如果我将 max-results 设置为 1000,Google 会自动将其减少到 100。我怎样才能获得我所有的关注者在 API

https://www.googleapis.com/buzz/v1/people/@me/@groups/@following?alt=json

谢谢

Sreeraj

In Google buzz API, I need to get all my followers. Let's assume I have 1000 followers. But google buzz api allows me to get only 100 followers, there is no paging varaible in the API. And I am limited to set the max-results to 100. If I put max-results to 1000, google automatically reduce it to 100. How can i get all my followers in API

https://www.googleapis.com/buzz/v1/people/@me/@groups/@following?alt=json

Thanks

Sreeraj

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

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

发布评论

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

评论(1

迎风吟唱 2024-12-02 19:34:10

根据 http://code.google.com/apis/buzz /v1/using_rest.html#query-params 除了 max-results 之外,还有一个 c 参数。
它被定义为

一个不透明的延续标记,允许对大量条目进行分页。

您会在第一个请求中收到“c”值,并将其传递给后续请求将为它们提供正确的偏移量。

According to http://code.google.com/apis/buzz/v1/using_rest.html#query-params there is a c parameter in addition to max-results.
It is defined as

An opaque continuation token that allows paginating through a large collection of entries.

You receive the 'c' value on the fist request, and passing it in to subsequent requests will give them the proper offset.

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