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.

Many people have described how to obtain the RSS data feed for a Facebook page.
For example: http://ahrengot.com/tutorials/facebook-rss-feed/

The following URL provides the feed for Coca-Cola's page:
http://www.facebook.com/feeds/page.php?format=rss20&id=40796308305

However, I cannot seem to find any documentation on facebook.com that describes this interface. Does anyone know if this interface is officially supported by Facebook? I don't want to reference it in my code only to have it dropped unexpectedly by Facebook.

I know I could use the Graph API 'posts' method of the 'page' object to obtain similar data, but that requires SSL and an access token, which I would like to avoid if possible.

share|improve this question
1  
I believe RSS feeds are officially deprecated. They may still work for some pages, but Facebook rolls out and removes features in a staged manner depending on when the page was created. – cpilko Oct 23 '12 at 1:09

1 Answer

You shouldn't rely on the RSS feed feature.

Your best approach for machine readable data is to query the statuses connection, eg https://graph.facebook.com/facebook/statuses?access_token=<ACCESS_TOKEN>.

You can then parse the JSON and output it as RSS.

share|improve this answer
Thanks Colm for the advice. I seem to obtain better results using the posts connection. When I use statuses, I receive older messages in the JSON response, and they don't seem to match the RSS feed data. – iamJoeAnthony Oct 23 '12 at 20:26
Yeah, /statuses will only get you Status Updates from the page. /posts or /feed will get you a lot more data. Anyway, glad it was of use. – Colm Doyle Oct 24 '12 at 5:02

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.