I'd like to pull the feed from a public facebook wall without using the graph api or server side code. I'm using jQuery and a url from a link labeled "Get Updates via RSS" for my example which is Nike's fan page. I'm getting an uncaught syntaxerror with the first ":" however. It makes me wonder if jsonp is even supported by facebook. Here's the code that breaks.
jQuery.ajax({
url: "http://www.facebook.com/feeds/page.php?id=15087023444&format=json&callback=?",
dataType: "json",
success: function(data){
document.write('success');
document.write(data.toSource());
},
error: function(){
document.write('error');
}
});
I'm new at a lot of ajaxy stuff, so any help is welcome.