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 want to read every Comment on the Wall from an Page.

var query = FB.Data.query('SELECT name,fan_count,pic_big FROM page WHERE page_id=XXXXXX');

query.wait(function(rows) {
document.getElementById('fb-root').innerHTML =
  'Your name is ' + rows[0].name + 
  '<br>Fans: ' + rows[0].fan_count + 
  '<br><img src="'+rows[0].pic_big+'">';

});

That is the way i can read the page Status. But i can't get a query done to read the comments for this page. And this is not a Fanpage. And i don't find a 'comments_fbid' in the Page Table. I hope you can Help me

Ok here is the Answer:

var query = FB.Data.query('select post_id, source_id, actor_id, target_id, likes, message from stream where source_id=XXXX');

XXX = is your site id.

So have fun with Facebook :)

share|improve this question
1  
Can you add an answer to your own question? If you do, you can select yours as the correct answer. It may seem strange, but it is the preferred way of dealing with situations like this. – Will Aug 23 '11 at 13:17
Can't find the Button to check it to the right Answer. Maybe i've worked to much with that creepy api – Hackbard Aug 23 '11 at 15:43

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.