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.

If you view facebook page, they are link left-bottom shows rss feed for facebook page, but unfortunately, the feed only shows status update by page owner, is there anyway to get feed from everyone who post the new status in the page....

share|improve this question

2 Answers

There's another way to get the feed from a public Facebook page as RSS, which is entirely public and can be retrieved anonymously; i.e. requires no Facebook connect or other stuff. The format for the URL of the RSS feed is:

https://www.facebook.com/feeds/page.php?id=PAGE_ID&format=rss20  

Where PAGE_ID is the Facebook ID of the page. Or even better, as JSON:

https://www.facebook.com/feeds/page.php?id=PAGE_ID&format=json  
share|improve this answer
do you have a working example of this? I don't think rss is supported anymore. – MotoTribe Oct 29 '12 at 5:35
3  
Sure @MotoTribe, here's the feed from a popular fan page for Gil Scott Heron, https://www.facebook.com/feeds/page.php?id=11510137267&format=json – Mick Byrne Nov 1 '12 at 2:52
Thanks for the nice info :) – shahrukh Feb 5 at 15:28
4  
To add something: in case you do not know your numeric ID, check this page out. – JNat Apr 2 at 15:20

Use http://developers.facebook.com/docs/reference/api/, get the access_token like this: Facebook: post image and description to wall and in page album via php

share|improve this answer
1  
oh sound difficult, im not coder, just think its easy like this only facebook.com/feeds/page.php?id=[page-id]&format=rss20 and then for everyone just be like this facebook.com/feeds/… – lochoe Feb 26 '12 at 10:41

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.