possible duplicate:
facebook api - how access photo album
how can display photos facebook album inside website?
you can use graph api images in album, this: https://graph.facebook.com/album_id/photos array containing images in album. array contains objects this:
"name": "hopes you're having 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 example api documentation. can use these image links directly, facebook gives different sizes gallery. luck.
Comments
Post a Comment