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.

Problem: I want to display the posts from my facebook page on a PHP page.[When there is a new post on the facebook page, my PHP page should also render the same]

Way1: If there is a way to get a RSS feed of the facebook page i can parse the RSS and display it in the PHP page. But i am not able to find a way to get the RSS feed.

Way2:Another way is to use FB Api. But what API can i use? Never worked with facebook API's so any help would be great.

Any other way to solve the problem is welcome!

share|improve this question

2 Answers

up vote 2 down vote accepted

Facebook has a universal page RSS feed:

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

You may simply retrieve and sanitize the data accordingly.

Good luck!

share|improve this answer

That doesn't seem to work for me (perhaps it's a privacy settings thing?) If you want everything on your wall (not just your own status posts, go to your notifications page and select RSS at the top where you have the options of getting either Text Message alerts or an RSS feed of what's on your wall.

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.