Possible Duplicate:
Facebook Api - how to access my photo album
How can I display photos from a Facebook album inside a website?
How can I display photos from a Facebook album inside a website? |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You can use the graph api to get the images in an album, like this: https://graph.facebook.com/ALBUM_ID/photos You get an array containing all the images in that album. The array contains objects like this:
This is an example from the api documentation. You can use these image links directly, facebook even gives you different sizes for the gallery. Good luck. |
|||||||||||||
|
|
yes its possible: Here an example with Graph: Photos: https://graph.facebook.com/98423808305 (A photo from the Coca-Cola page) Photo albums: https://graph.facebook.com/99394368305 (Coca-Cola's wall photos) |
|||
|
|
You will need to manage the authentication firstly. If you are using the facebook php api and its your own photo album you can request permanent access $facebook->getLoginUrl(array('req_perms' =>'user_photos friends_photos')); } Then after that you can make requests to the graph api such as http://graph.facebook.com/me/albums - your auth key will at the end of that request. |
|||
|
|
|
Just to round out the answers, there are also commercial options available: http://codecanyon.net/item/facebook-album-gallery/400462?ref=oberto |
|||
|
|
|
If you use self hosted domain with Wordpress, you can do it with these steps: Install and Activate Facebook Photo Fetcher for Wordpress
Setting for your Facebook Photo Fetcher
This plugin is successfully connected with your ID Facebook account. Insert your Facebook Album into Post or Page in Wordpress */
Demo: http://www.justin-klein.com/projects/facebook-photo-fetcher#demo |
||||
|
|
|
I need a slightly altered version of what was asked previously: I want to display my own public photo album, without having to create a page or app to do so. the direct URL to the album I want to display is: https://graph.facebook.com/3605097331203/photos This only gives me an empty json array. Any ideas why this is happening? Any tips are greatly appreciated! Thanks - Stijn |
|||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.