Facebook graph API to get get posts from Pages

Its quite simple. just do as

https://developers.facebook.com/docs/graph-api/reference/v2.2/page/f‌​eed

It will work.


I'm a bit late at the party but for completeness I would like to add:

Using the latest version 2.2 you can access the feed via the page id, eg:

https://graph.facebook.com/v2.2/PAGE_ID/feed?access_tkoen=YOUR_ACCESS_TOKEN

Individual posts can be retrieved too by their own id or via the feed.

https://graph.facebook.com/v2.2/POST_ID?access_token=YOUR_ACCESS_TOKEN

Maybe this was also possible with the older versions? Don't know, I'm just getting started.