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'm trying to get some json feed from a facebook page. Here's my code:

var myurl = "https://www.facebook.com/feeds/page.php?id=111222778066&format=json";
$.ajax({
    url: myurl,
    type: 'GET',
    dataType: "jsonp",
    success: function(json){
      ...
    }
});

The problem is that I keep getting this error: (in page.php:2)

Uncaught SyntaxError: Unexpected token : 

Any help is highly appreciated...

share|improve this question

1 Answer

This is attempting to query an RSS feed for a page. RSS feeds are officially deprecated. Some pages still have them grandfathered in, depending on the date the page was created, but you can't rely on them being there, nor can you detect if they are present or not.

This page seems to have a feed - for now, since the URL returns data.

Your error is a syntax error. Take a look at your console to see which line this is coming from. There is no guarantee that the unexpected colon is in the code snippet you posted.

To future proof your script, your best bet is to create an app, and query the page via the Graph API at this URL:

https://graph.facebook.com/111222778066/feed?access_token=YOUR_APP_ACCESS_TOKEN

If you authenticate as an app, you can get a permanent access token. Using the JavaScript SDK will automate this process for you.

These articles should get you started:

share|improve this answer

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.