Getting posts from a page using Facebook4j api
facebook, facebook-graph-api, facebook4j, java
Solution
Facebook4J supports Page APIs since version 2.0. You can get posts from a facebook page via Facebook#getFeed(PAGE_ID). example:
ResponseList<Post> feed = facebook.getFeed("eclipse.org");
javadoc: http://facebook4j.org/javadoc/facebook4j/api/PostMethods.html#getFeed()
Problem
I'm wondering if there's a way to use the Facebook4J API to get all (or even recent) posts from a facebook page? I know it's possible to get all posts from a user's wall or feed, but I can't find anything in the API or the documentation that shows how to get posts from a page. Looking at http://facebook4j.org/en/api-support.html#page , it would appear that there is in fact a set of Page related methods, but clicking on any one of them simply refreshes the page, making me think that maybe they are planned but not yet implemented? I know it's possible to get posts from a page using the graph API, but I'd really rather stick with Facebook4j, if possible. Any input would be greatly appreciated!