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.

Possible Duplicate:
How to delete a Facebook comment post using the Facebook GRAPH API?

I'm using FQL Query to get all comments from posts. Then using Javascript SDK to post comment:

            FB.api("/"+postId+"/comments", 'post', { message: comment }, function(response){
                if (!response || response.error) {
                    alert('Error occured');
                } else {
                  alert('Post was deleted');
                }
            });

I try using Javascript SDK and FQL for delete comment but failed.

This question isn't duplicate because I ask how to delete comments using Javascript SDK not Facebook GRAPH API.

share|improve this question

marked as duplicate by hotveryspicy, Igy, bobs, bmargulies, EdChum Dec 30 '12 at 0:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

I figure it out using Javascript SDK & previous questions SO:
get comment_id variable from field id from FQL table comment.

FB.api('/'+comment_id, 'delete', function(response) {
  if (!response || response.error) {
    alert('Error occured');
  } else {
    alert('Post was deleted');
  }
});
share|improve this answer

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