How to get the RSS feed for any facebook page

1 Star2 Stars3 Stars4 Stars5 Stars (3 votes, average: 3.67 out of 5)
Loading...
April 10, 2015

We use RSS feeds for many reasons, to read content from various websites in a digestible format, to pull data from websites to display in web applications and more. Almost all blogs provide a RSS feed that allows their readers to easily subscribe to and stay updated with their articles and new content. But there are some sites that yo may wish to have a RSS feed for but those aren’t provided out of the box. I was in a dire need for a RSS feed for a couple of facebook pages so I had to figure out if Facebook did provide it. It indeed does but its not documented anywhere. Here is how you can grab the RSS feed URL for any Facebook page and use it for various purposes.

The first step is to figure out the page id of your Facebook page. Figuring that out is quite easy. Add graph. to the beginning of your facebook URL and it will display some information about your page in plain text format. For eg, for the Facebook page of techattitude.com, http://facebook.com/techattitude. the graph URL will be http://graph.facebook.com/techattitude. When this link is opened, the 2nd line of the page shows the page id in this format: “id”: “1520225201598101”

Now copy this page ID. and replace the YOURPAGE ID in the following URL with the page ID that you want the RSS FEED URL for.
https://www.facebook.com/feeds/page.php?id=YOURPAGEID&format=rss20
So, for techattitude’s facebook page, the RSS feed URL will be:
https://www.facebook.com/feeds/page.php?id=1520225201598101&format=rss20
Another URL format is also available for the same purpose which is
http://www.facebook.com/feeds/page.php?format=rss20&id=YOURPAGEID

So, with this easy trick, you can easily grab the RSS feed for any facebook page. For eg, if you want to subscribe to CNN’s facebook page using your RSS feed reader, you can use the following feed URL for that purpose.
https://www.facebook.com/feeds/page.php?id=5550296508&format=rss20

You may also like...