Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When pulling photos from a Facebook album via the graph API, i.e.

https://graph.facebook.com/<albumid>/photos?access_token=<token>&limit=999&fields=name,source

For some albums, it only supplies partial results. For instance, an album with 15 photos may only return 13 photos. This call:

https://graph.facebook.com/<albumid>?access_token=<token>&fields=count

...Indeed returns the proper count of 15. My first thought was that perhaps these 2 "missing" photos have more limiting privacy settings, but every photo in the entire album (which is owned by the owner of the token, incidentally) has the same "visible to friends" privacy setting. Most albums do return all photos, as expected.

Any ideas as to what might be causing this behavior?

share|improve this question
Graph API is well known for returning partial results at different queries. FQL is what is efficient and is reliable. Added an answer. – Kishor Nov 15 '12 at 9:16
Unfortunately, the FQL query returns the exact same 13 items (i.e. it's still missing 3). – Metal450 Nov 15 '12 at 22:17

1 Answer

Instead of the cause of why it happens, I am suggesting you a workaround. Graph api is well known for returning partial results. (You can search for that, and you get hell lot of such issues.)

why not go the FQL way?

Checkout :https://developers.facebook.com/docs/reference/fql/photo/

You can get the id, or direct images links of the pictures in an album in a single query.

Sample : SELECT src_big FROM photo WHERE aid="20531316728_324257"

This returns the url of biggest version of the pictures inside the album.

This should probably solve your problem as long as you are using a user access_token and not app access_token.

share|improve this answer
It’s not as if FQL was not well-known for giving “partial results” as well … – CBroe Nov 15 '12 at 13:06
Its much more reliable than Graph API. – Kishor Nov 15 '12 at 13:54
YMMV, but other people have different experiences (including me). – CBroe Nov 15 '12 at 14:36
I am suggesting a way to the user who is facing difficulties with Opengraph.If graph isnt working fine for him, FQL is his only hope. I hope I am clear. Not really looking for a cat fight or something. So Cheers! – Kishor Nov 15 '12 at 14:40
Unfortunately, the FQL query returns the exact same 13 items (i.e. it's still missing 3). So this is not the problem. – Metal450 Nov 15 '12 at 22:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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