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.

Possible Duplicate:
Facebook Api - how to access my photo album

How can I display photos from a Facebook album inside a website?

share|improve this question
Yes it is possible – Awais Qarni Apr 29 '11 at 8:03
1  
Walked into that one didnt i... – Ezra Apr 29 '11 at 8:03

marked as duplicate by Bill the Lizard Apr 23 '12 at 11:49

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.

6 Answers

up vote 8 down vote accepted

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:

"name": "hopes you're having a great weekend!",
         "picture": "http://photos-d.ak.fbcdn.net/hphotos-ak-snc1/5370_127826373305_40796308305_2373079_2781005_s.jpg",
         "source": "http://a4.sphotos.ak.fbcdn.net/hphotos-ak-snc1/5370_127826373305_40796308305_2373079_2781005_n.jpg",
         "height": 604,
         "width": 427,
         "images": [
            {
               "height": 604,
               "width": 427,
               "source": "http://a4.sphotos.ak.fbcdn.net/hphotos-ak-snc1/5370_127826373305_40796308305_2373079_2781005_n.jpg"
            },
            {
               "height": 254,
               "width": 180,
               "source": "http://photos-d.ak.fbcdn.net/hphotos-ak-snc1/5370_127826373305_40796308305_2373079_2781005_a.jpg"
            },
            {
               "height": 130,
               "width": 91,
               "source": "http://photos-d.ak.fbcdn.net/hphotos-ak-snc1/5370_127826373305_40796308305_2373079_2781005_s.jpg"
            },
            {
               "height": 106,
               "width": 75,
               "source": "http://photos-d.ak.fbcdn.net/hphotos-ak-snc1/5370_127826373305_40796308305_2373079_2781005_t.jpg"
            }
         ],

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.

share|improve this answer
2  
And yes, it is possible. – DannyKK Apr 29 '11 at 8:06
Yes i like this... But how do i get the data from this? – Ezra Apr 29 '11 at 8:24
Well, that depends from the platform you use. The graph api call returns json. With PHP you can use json_decode, other platforms have similar libraries, please provide more information. – DannyKK Apr 29 '11 at 8:32
Php or javascript/mootools – Ezra Apr 29 '11 at 8:55
For anyone looking into it, if you set any kind of age restrictions on your page, you won't be able to use the plain URL. – Rob Mar 30 '12 at 23:48
show 2 more comments

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)

share|improve this answer
+1 for giving actual examples. Helped me figure out what set of numbers was the actual "Album ID". – Eddie Oct 14 '11 at 14:06

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.

share|improve this answer

Just to round out the answers, there are also commercial options available:

http://codecanyon.net/item/facebook-album-gallery/400462?ref=oberto

share|improve this answer
I can't get this to work... Can you? – Michiel Jun 12 '12 at 11:29

If you use self hosted domain with Wordpress, you can do it with these steps:

Install and Activate Facebook Photo Fetcher for Wordpress

  1. Download the latest version of Facebook Photo Fetcher plugin for Wordpress http://wordpress.org/extend/plugins/facebook-photo-fetcher/
  2. Extract and activate the plugin via dashboard

Setting for your Facebook Photo Fetcher

  1. Settings > FB Photo Fetcher
  2. Click "Login to Facebook"
  3. Enter your information > Login > close the popup
  4. Grant Photo Permissions > Accept the permissions > Success!
  5. click "Save Facebook Session"

This plugin is successfully connected with your ID Facebook account.

Insert your Facebook Album into Post or Page in Wordpress */

  1. Search for Albums > it will open your album and get you album ID For Example, the album ID is: 123456789987654321 Create a new post or page in wordpress > use HTML editor not visual
  2. Insert this code:

    <!-- FBGallery 1234567890123456789 --> <!--/FBGallery -->
    

    Change 1234567890123456789 with your real facebook album ID.

  3. Save > see your page.

Demo: http://www.justin-klein.com/projects/facebook-photo-fetcher#demo

share|improve this answer

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

share|improve this answer
1  
This is a new question, not an answer. – Mark Stosberg Jan 18 at 19:46

protected by Community Feb 16 '12 at 23:24

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.

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