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 trying to use login using facebook in my website. I used exactly the same code given in developers.facebook.com website.

window.fbAsyncInit = function () {
    FB.init({ appId: 'app_id', status: true, cookie: true, xfbml: true });
  };

  (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));

When i was testing my website.....I was able to login with my Facebook User Id and it worked...then i tried it with my friends it worked for some and didnt work for others...then i created an another account in facebook and tried with that it didnt work...Does anyone have any answer....or knows what exactly happens.

share|improve this question
Did you get any error messages in the browser console? My suspicion is that in some cases you're trying to log in before the JS code is ready, and in others the JS code has loaded fine and it works. Try swapping the order of the two code blocks above so that the fbAsyncInit call is placed after the function closure. Good luck. – Lee Sibbald Jul 9 '12 at 19:05

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.