I am developing a iPhone application which get facebook album with this URL https://graph.facebook.com/me/albums?access_token=2227470867|2.ZJr73vaEvFeN4fI_A70RFw__.3600.1297090800-100000566543036|WmgxdwULBgKXl8J7ksGIA1tyGik

Now i want to get photos from this album.

Any Idea will be appreciated.

Thanks in Advance.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

So /me/albums returns an array of Album objects, each of which has an id.

If an album had an id of 99394368305, you can go to

https://graph.facebook.com/99394368305/photos

to get an array of photo objects.

Each of these will have the picture and source properties to get the image data from facebook.

They will all have an images array as well if you want pre-scaled images instead of just the originals.


All the facebook queries give JSON back - I'm assuming that you know how to parse this?

link|improve this answer
Thanks, It help me. – Anderson Feb 10 '11 at 5:20
Can you please give answer for this question ? stackoverflow.com/questions/4957260/… – Anderson Feb 10 '11 at 12:56
@audience's answer seems spot on already :) – deanWombourne Feb 10 '11 at 15:20
@deanWombourne graph.facebook.com/album_id/photos returns "False" when I execute it on my browser. How do you use it with FBConnect of Facebook iOS sdk? – Jimit Jul 8 '11 at 2:35
What are you putting as your album_id and do you have permissions to view that album? (I'm assuming you're not just putting album_id straight in there!) – deanWombourne Jul 9 '11 at 18:52
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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