I'm using the Facebook Graph Api v2.1 to get all comments on the posts we do on our Facebook page. I noticed we are missing some comments because Facebook has marked them as Spam. Is there a way I can retrieve these comments too? I tried this: Identify Spam from fb:comments via FQL .. but all comments come back with is_private "false". So I take it I have to go up one level and add a property to the API call.. Searched through the maze of documentation over at Facebook, but no luck.. Here is the URL I use to get the comments:
/v2.1/{0}/comments?fields=id,from,message,created_time&access_token={1}
where {0}
is the object id of the post and {1}
the access token.
Any ideas?