I am using the facebook sdk from https://github.com/pythonforfacebook/facebook-sdk
I am unable to paginate the results. I see the first page of results, but can't seem to understand how to get the next page of results using the next link.
{
"data": [
{
"name": "AB",
"id": "1"
},
{
"name": "CD",
"id": "1"
}
],
"paging": {
"next": "https://graph.facebook.com/../friends?access_token=<>&limit=5000&offset=5000&__after_id=<>"
}
}
How to retrieve the next page of results with this kind of offset based pagination?
PS:I did find some similar questions here, but they were all unanswered, hence reposting this question.