I have a website & have placed social plugin on all of my webpages. What I want is to retrieve all the comments posted on my site on different pages via my APPID
https://graph.facebook.com/fql?q=SELECT xid from comments_info where app_id=myappid
I have tried this url with accesstoken at Facebook developer's page
The output I get is
{
"data": [
]
}
I tried querying this up to get the latest comments posted using my appid but that doesnt work. I dont want to grab comments from one specific webpage but from all the pages of my domain where users has used social plugin attached with my appid to post a comment.
Anyone has solution to it ?