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.

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.

http://jsfiddle.net/9PQqa/

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.

share|improve this question
hv u got the solution man? – Avi C Jan 22 at 15:56

1 Answer

That url is returned as text/javascript - see jquery ajax request works only in firefox for more information.

I also updated that answer with a more flexible solution: using jsonp

jQuery.ajax({
  url: "http://www.facebook.com/feeds/page.php?id=15087023444",
  dataType: "jsonp",
  type: 'get',
  success: function(data){
    console.log( 'success' );
    console.dir( data );
  },
  error: function(){
    console.log( 'error!' );
  }
});
share|improve this answer
My request returns Content-type:application/json, so I'm not sure I follow. I agree there may some odd characters in there (i.e. tabs and line breaks) that cause the syntax error but the example you linked to doesn't seem to solve this issue for me. I either get a crossdomain issue or the same syntax error. Also, why did you leave out the "format=json" from the query string? – LessOverMore Dec 9 '11 at 23:56
By switching to jsonp, you avoid the cross-domain issues as well as not parsing as json but creating the object via the jsonp callback, hence, not telling facebook to format as json. – Dan Heberden Dec 11 '11 at 22:00
this is not working... – Kelly Milligan Mar 29 at 17:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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