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 only getting this message in Chrome. Firefox works just fine. I've been debugging trying to find at what point this error is happening and can't seem to nail it down. The exact message is, "Uncaught TypeError: Cannot call method 'shift' of null" from all.js:57.

Also, I'll note a few other things that may help you help me:

  • I'm loading the SDK as a requirejs module. I've tried loading it the "normal way" as well but the result is the same.
  • It's not happening locally, only on our staging server. This makes me think it has something to do latency during the SDK load.
  • It's only happening in Chrome. Firefox works as well as Safari. The only difference in Safari is that I see a similar error stating that it's a type issue. The message there is "'null' is not an object (evaluating 'queue.shift`)" @ debug.js:2712 but it doesn't break the app.

Any help and/or insight here would be great. Thanks!

share|improve this question

2 Answers

Sorry, I can help much, but I have the same issue which might aid in closing in on the problem.

Loading JS likeso:

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

"It's not happening locally, only on our staging server. This makes me think it has something to do latency during the SDK load."

I tend to agree. The error seems to occur sporadically only. In addition, I get the occasional CURLOPT_IPRESOLVE undefined error. Seems all to be related to connectivity.

share|improve this answer

These Facebook Instructions explain a different way to call the SDK and this worked for me. I haven't tested it yet, but I think the channel file will let you test this locally, which is super sweet.

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    // init the FB JS SDK
    FB.init({
      appId      : 'YOUR_APP_ID', // App ID from the App Dashboard
      channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File for x-domain communication
      status     : true, // check the login status upon init?
      cookie     : true, // set sessions cookies to allow your server to access the session?
      xfbml      : true  // parse XFBML tags on this page?
    });

    // Additional initialization code such as adding Event Listeners goes here

  };

  // Load the SDK's source Asynchronously
  // Note that the debug version is being actively developed and might 
  // contain some type checks that are overly strict. 
  // Please report such bugs using the bugs tool.
  (function(d, debug){
     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" + (debug ? "/debug" : "") + ".js";
     ref.parentNode.insertBefore(js, ref);
   }(document, /*debug*/ false));
</script>
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.