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.

I'm trying to get the photos from album using the album id but cannot get it,

I'm using graph api explorer to check the URL and its not working,

First, I'm doing a /me/albums to get the albums,

part of result result:

name": "Moribay Photos",
      "link": "https://www.facebook.com/album.php?fbid=388544751194190&id=100001160043714&aid=79115",
      "cover_photo": "388544754527523", 

now that i know that it has an id of 79115, i do a /79115/photos and getting the following though I have 3 photos in it

    {
      "data": [
      ]

}
share|improve this question

1 Answer

up vote 1 down vote accepted

You are using the wrong id, use fbid not aid.

https://graph.facebook.com/388544751194190?fields=photos

or

https://graph.facebook.com/388544751194190/photos
share|improve this answer
with your URL, i may get all photos for the provided userid but i need all photos from a particular album given the album id – Noor Dec 22 '12 at 21:55
It is the id of an album "id": "388544751194190", "type": "album", "name": "Moribay Photos" – Aviram Segal Dec 23 '12 at 6:33
Thanks, you were right – Noor Dec 23 '12 at 13:40

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.