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 the following Facebook code so i can have "like" buttons on my site:

<body>
    <div id="fb-root"></div>
    (function(d, s, id) {
        var js, fjs = d.getElementsByTagName(s)[0];
        if (d.getElementById(id)) return;
        js = d.createElement(s); js.id = id;
        js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
        fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));

    window.fbAsyncInit = function() {
        FB.init({
            appId      : 'the_app_id', // App ID
            status     : true, // check login status
            cookie     : true, // enable cookies to allow the server to access the session
            xfbml      : true  // parse XFBML
        });

        // Additional initialization code here
    };
    // Load the SDK Asynchronously
    (function(d){
        var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
        if (d.getElementById(id)) {return;}
        js = d.createElement('script'); js.id = id; js.async = true;
        js.src = "//connect.facebook.net/en_US/all.js";
        ref.parentNode.insertBefore(js, ref);
    }(document));

This is the first thing in the "body" section. Above the body (aka the head) there are two more script tags. One has google code for google analytics, and the other has all the jquery stuff the site actually has.

When i load a page, checking firefox web console, I can see multiple - 20? 30? calls to the facebook page like this

GET http://www.facebook.com/plugins/like.php?api_key=theKeyhere&channel_url=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D11%23cb%3Df392c4d9c15196%26origin%3Dhttp%253A%252F%252Flocalhost%253A8000%252Ff379a151306919e%26domain%3Dlocalhost%26relation%3Dparent.parent&extended_social_context=false&font=segoe%20ui&href=%2FshowRelationship%2F24&layout=button_count&locale=en_US&node_type=link&sdk=joey&show_faces=false&width=90 [HTTP/1.1 200 OK 559ms]

Sorry, make that 50 or so? Why would this be happening? Is this what the facebook api always does, or is it likely that i'm, um, what could i be doing?

share|improve this question
1  
Since each Like button is essentially an iframe, there will be at least one HTTP request per Like button, to fetch the document to display inside of the iframe. – CBroe Sep 26 '12 at 15:36

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.