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.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.