So, I have an app with an id, and I think that I got the access code for the app correctly. On one of my pages, I am trying to scrape the comments that are left.
var FBpullcomments = function() {
FB.api(
{
method: 'fql.query',
query: 'select post_fbid from comment where object_id in (select comments_fbid from link_stat where url ="' + linkUrl + '")'
},
function(data) {
nv.log(data);
}
);
};
In trying to get the simple case, I have tried the string
select comments_fbid from link_stat where url ="' + linkUrl + '"
with no luck. I get a comments_fbid: null
Here is some side information: The site is a "dev" site and sits behind a firewall. - not sure if FB scrapes the site for the data and thats why it will not work. Due to the nature, I have to use the JS API, but I have flexibility in using any of the JS calls I have full access to the FB APP