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 I ask for photos in certain albums I receive only part of the images, while when I use facebook.com I can see them all.

For example: /3738185490005/photos?fields=id returns 4 images:

{
  "data": [
    {
      "id": "3805142683893", 
      "created_time": "2012-06-05T20:11:54+0000"
    }, 
    {
      "id": "3744666692031", 
      "created_time": "2012-05-25T18:40:26+0000"
    }, 
    {
      "id": "3738416375777", 
      "created_time": "2012-05-24T14:41:45+0000"
    }, 
    {
      "id": "3738185530006", 
      "created_time": "2012-05-24T13:41:37+0000"
    }
  ]
}

When I look at Facebook itself I see 9 images. Also when I look at the album call: /3738185490005 I see "count": 9. All images in this album are shared with Friends. I have seen this with multiple kinds of albums, but it happens most (as far as I can see) with Mobile Uploads or Instagram albums.

What can cause this?

share|improve this question

2 Answers

try /3738185490005/photos?fields=id&limit=100
share|improve this answer
Unfortunately that doesn't work, because the default limit is 25 and there are only 9 photos in the album. It's probably permission related, but I don't see the difference between the different photos. – Robin Eggenkamp Oct 14 '12 at 15:48

Strange. I made an app, and nothing like that happened.. For the album that is not hidden to the user, all pics of that album are shown.

To be in the safe side, try using the access token along with the api call.

share|improve this answer
For most albums there is no problem, but there are some exceptions. As I do get the same results with the Graph API Explorer (with full rights), I fear it's in all apps. – Robin Eggenkamp Oct 14 '12 at 15:50

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.