I made a simple test Page in the Facebook which looks OK. I have provided the extended permission of read_stream and manage_pages. I am using Facebook SDK 6.0.10 and in code it connects to the Page correctly by providing the basic page information like name, category etc. However in the code;
I generated the authentication code from facebook correctly.
var fb1 = new FacebookClient("xxxxxxxxxxxxxxxxxxx");
//Page info is comming correclty.
dynamic PageInfo = fb1.Get("144534545691657");
//Here no feed/statuses/posts and only empty data is returned.
//And also the same behavior exist if i access it from Graph APi Explorer on Facebook.
dynamic feed = fb1.Get("144534545691657/feed");
image is for your reference showing the Graph Explorer view
I have few posts that have already posted on my Page. How i can get the feed details?