I need to get a list of links with comments from a facebook page via the facebook graph api, and filter the links by an array of urls.
If I GET this
https://graph.facebook.com/19292868552?fields=links.fields(link,id)&access_token=...
I get a full list of the comments on that page, but I need to filter it and I'm not sure how I can. There are 'modifiers' like limit(10) and such, but (the pretty useless) documentation doesn't give me a full list of available modifiers.
If I GET the following
http://graph.facebook.com/?ids=http://developers.facebook.com/blog/post/2012/11/15/delivering-important-alerts-about-your-app/
I get some links but I can't seem to be able to get any other fields than the amount of comments and shares...
How could I get a list of links from a page filtered by url including their respective comments via the graph api? And if the Graph API can't do the job, is there an alternative?