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.

Hi
I am administrator of a Facebook Fan Page and i want to make an application that moves (or copies) photos uploaded by my page's fans to another page's album created by me.

I have never used Facebook APIs. Is it possible to get all fan's photos? Is it possible to save photos to my page's album?

share|improve this question
you can try stackoverflow.com/questions/4841367/… – Pippo Franco Jul 24 '12 at 17:31

1 Answer

up vote 1 down vote accepted

Actually, you can get the pictures in your fan's page by issuing a GET request to https://graph.facebook.com/PAGE_ID/photos. it returns an array (JSON encoded) of the page's picture. You can have an idea of this here

Similarly, once you have those picture information you can send them to https://graph.facebook.com/PROFILE_ID/ALBUM_ID What tecnology are you going to use for this application?

share|improve this answer
graph.facebook.com/PAGE_ID/photos returns my page's profile pictures, not fan's photos :( i think that i'll use PHP or Java (if possible) – Oneiros Apr 1 '11 at 14:21
Well, you should then locate the album_id where the photos are located and then use graph.facebook.com/ALBUM_ID/photos to retrive all the picture in there. You can actually get all the albums relatively to a user/page going to graph.facebook.com/USER_OR_PAGE_ID/albums – ArtoAle Apr 1 '11 at 15:08
man i am not searching photos in albums that i created or in my page's profile pictures: i need "fan photos" and they are not in graph.facebook.com/USER_OR_PAGE_ID/albums :( – Oneiros Apr 2 '11 at 10:21

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.