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 :)