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.

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?

share|improve this question
What are you doing? 144534545691657 is not a page ID - is that your app ID? Apps don't have a usable feed connection – Igy Nov 20 '12 at 19:36
Yes it is my AppID. So I just want to read the post of my page which is created as an App. How will i achieve this? – user1838594 Nov 21 '12 at 9:11
OR How to get the page Posts data. I could not find the way to have a Page whose posts can be fetched with FacebookSDK. Please help... – user1838594 Nov 21 '12 at 15:43
'page which is created as an app' doesn't make any sense - any Facebook Page can have its posts read via the API, and you can use an app access token for this if there are no demographic restrictions on the page - you have the API call correct, but you're asking for the feed of an app, not the feed of the page – Igy Nov 21 '12 at 17:17
1  
It is done. Actually i was giving AppID/feed as you mentioned. Now i checked it and found the PageID/feed. Feeds are now coming :) – user1838594 Nov 22 '12 at 12:33
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.