Getting more than 25 photos from the Facebook Graph API

后端 未结 3 1130
南方客
南方客 2021-01-05 20:10

I\'m trying to retrieve all the photos a user is tagged in using the Graph API but I can only get the latest 25.

Is it possible to get more, and if so, how?

3条回答
  •  抹茶落季
    2021-01-05 20:51

    Currently there is 100 items limitation per query both on photos and likes: However, 100 pics query takes so much time to run for me.

    The following API call:

    https://graph.facebook.com/me/photos?limit=500
    

    gives only 100 results with paging link.

    Run in FQL explorer (If you have more than 100 pic on your account): https://developers.facebook.com/tools/explorer/?method=GET&path=me%2Fphotos%3Flimit%3D500

提交回复
热议问题