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.

Show comments of every one who posted it in my page

This is giving blank page

Where am i going wrong

  FB.api({
  method: 'fql.multiquery',
  queries: {
   query1: 'SELECT post_fbid, fromid, text, time FROM comment WHERE post_id="'+postID     +'"',
  query2: 'SELECT id, name, url, pic FROM profile WHERE id IN (SELECT fromid FROM #query1)'
 }
 });
</script>
<script>
function(response) {

var comments = response[0].fql_result_set;
var users = response[1].fql_result_set;    

//loop through the comments
for(var i = 0, j = comments.length; i<j; i++){

    for(var x = 0, y = users.length; x<y; x++){
         if(comments[i].fromid == users[x].id){
             //we have a match, this comment is from user users[x]
             //process users[x]
             //break the inner for loop, since we already have a match
         }
    }

}

}

share|improve this question

1 Answer

Are you using the new Facebook comments (“migrated”)?

Perhaps consider using the graph API instead:

https://graph.facebook.com/comments/?ids=http://example.com/

share|improve this answer
one big catch for using graph api is that results cannot be sorted easily. – PH7 Aug 15 '12 at 4:07

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.