I have been porting albums in to websites with the below code and it has suddenly stopped working. The albums and photos are public but it seems to want an access_token.
Here is the graph for this particular album:
https://graph.facebook.com/483171821709416/photos
Here is the javascript I've been using:
$.getJSON('//graph.facebook.com/483171821709416/photos?callback=?',function(json){
$.each(json.data,function(){
$('<li></li>')
.append('<span class="thumb" style="background: url(' + this.images[1].source + ') center no-repeat; background-size: 140%;"><a href=' + this.images[0].source + ' rel="gallery"></a></span>')
.appendTo('#album-gallery');
});
});