I am trying to get my photos on my facebook profile. I am going to create a new album and would like to link to that particular album and echo each individual photo within.
All the examples i have found require an app id etc and are for fb pages. I want to do this from my profile instead.
Any ideas/guidance would be a great help.
this is the closest i have come to getting it working but cant seem to link to one of my galleries.
<h2></h2>
<nav id='thumbs'></nav>
<img id='viewer'>
<script src="http://code.jquery.com/jquery-1.6.4.min.js" type="text/javascript"></script>
<script type="text/javascript">
(function (gallery_id) {
var title = $('h2'),
viewer = $('#viewer'),
thumbs = $('#thumbs');
// album info
$.getJSON('//graph.facebook.com/' + gallery_id + '?callback=?', function(json, status, xhr) {
title.html('<a href="' + json.link + '">' + json.name + '</a> from ' + json.from.name);
});
// images
$.getJSON('//graph.facebook.com/' + gallery_id + '/photos?callback=?', function(json, status, xhr) {
var imgs = json.data;
viewer.attr('src', imgs[0].images[0].source)
for (var i = 0, l = imgs.length - 1; i < l; i++) {
$('<img src="' + imgs[i].images[3].source + '" data-fullsize="' + imgs[i].images[0].source + '">').appendTo(thumbs);
}
$('img', thumbs).bind('click', function(e) {
e.preventDefault();
viewer.attr('src', $(this).attr('data-fullsize'));
});
});
})('426067170422'); // let's go -- put the gallery ID here
</script>