Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook API How To Get All Pages I Like Without Pagination

If I like more than 100 pages/things, FB.API('me/likes') returns 99 items and a link to the next paging.

Is it possible to get ALL without the pagination?

Thanks

like image 233
Henson Avatar asked Mar 23 '12 17:03

Henson


1 Answers

Have you tried /me/likes?limit=999 ? You may still need to paginate, but you should be able to get more than 99 items in a single call

like image 132
Igy Avatar answered Oct 04 '22 20:10

Igy