Reputation: 4378
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?
Upvotes: 1
Views: 1120
Reputation: 2977
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?
Upvotes: 1