Using Facebook Graph API, I am trying to get ALL of the photos from a given album ID. I tried finding it on Facebook Graph Reference site, but couldn't find any help. So here it is what I am doing.
I have a valid access token
with permission of user_photos
and friend_photos
. I already verified that facebook debugger site. I already have the album id. And following is my URL that I am passing:
https://graph.facebook.com/<albumId>/photos?access_token=<my-valid-access-token>
I do get 4 photos, but I have 29 photos in total. Also, I don't see any cursor for "prev" or "next". So, now, I am lost. Don't know what I am missing here. Any help is appreciated. I am using Facebook SDK for .NET.