Google Buzz API - 如何访问我的全部关注者? - 谷歌错误
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 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 tomax-results
.It is defined as
You receive the 'c' value on the fist request, and passing it in to subsequent requests will give them the proper offset.