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

link|improve this question

52% accept rate
feedback

2 Answers

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.

link|improve this answer
This is onbly in the case of activities. It willl not reflect in the people feed :( – Sreeraj Jul 21 '11 at 8:41
it says 'All operations that return resource collections', not 'All operations that return activity resources' so it seems that this should work for that. – Cole Jul 21 '11 at 21:09
feedback

Have you tried this: http://code.google.com/p/buzz-python-client/source/browse/examples/page_through_all_collections.py#132 example or this: http://code.google.com/p/buzz-python-client/source/browse/examples/get_user_following.py example.

They both document extracting the set of people following a given user.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.