Google Buzz API - How do I access my entire followers ? - Google Error

149 Views Asked by At

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

1

There are 1 best solutions below

2
Cole On

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.