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.

I'm trying to use the Facebook SDK and API to log users into my website, and it all works peachy aside from a looping console error.

Unsafe JavaScript attempt to access frame with URL https://s-static.ak.fbcdn.net/connect/xd_proxy.php? Domains, protocols and ports must match.

It only displays when the FaceBook login dialog box is displayed and stops when it closes, but it's an annoyance that I'd rather be rid of.

Facebook SDK

scripts/facebook.js

//FB SDK (Software Development Kit) for easy access to FB commands @ http://developers.facebook.com/docs/reference/javascript/
window.onload = function(){
    window.fbAsyncInit = function() {
        FB.init({
          appId      : '350562728295861', // App ID
          channelUrl : 'http:url', // Channel File
          status     : true, // check login status
          cookie     : true, // enable cookies to allow the server to access the session
          xfbml      : true  // parse XFBML
        });
    };
}
// Load the SDK Asynchronously
(function(d){
    var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
    js = d.createElement('script'); js.id = id; js.async = true;
    js.src = "//connect.facebook.net/en_US/all.js";
    d.getElementsByTagName('head')[0].appendChild(js);
}(document));

Login Button

scripts/facebook.js

function logIn(){
    FB.login(function(){ //calls the Facebook popup window

    });
}

The Channel File

<script src="//connect.facebook.net/en_US/all.js"></script>

The scripts are located in root/scripts and the channel and index files are found in the root folder.

I've written a lot more, but this is effectively just the SDK itself and it still throws the error. So I'm expecting some sort of missing value or other oversight.

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.