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.

<title>My Facebook Login Page</title> <script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US" type="text/javascript"> </script> <script type="text/javascript">
var api_key = 'YOUR APP ID'; var channel_path = 'xd_receiver.htm';
FB_RequireFeatures(["XFBML"], function() { // Create an ApiClient object, passing app's API key and // a site relative URL to xd_receiver.htm FB.Facebook.init(api_key, channel_path); FB.Connect.get_status().waitUntilReady(function(status) { switch(status) { case FB.ConnectState.connected: document.getElementById("divstatus").innerHTML ="LOGGED IN AUTHORIZED";
break; case FB.ConnectState.appNotAuthorized: document.getElementById("divstatus").innerHTML ="LOGGED IN NOT AUTHORIZED";
break; case FB.ConnectState.userNotLoggedIn: document.getElementById("divstatus").innerHTML ="NOT LOGGED IN";
break; } }); }); </script>

`<div id="fb-root">
</div>
<script>
    window.fbAsyncInit = function() {
      FB.init({
        appId      : 'YOUR APP ID',
        status     : true, 
        cookie     : true,
        xfbml      : true
      });
    };
    (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));
</script>

<div class="fb-login-button">
    Login with Facebook</div>
<br />
<br />
<div id="divstatus">
</div>`

first code part is head part and second is body part

here i am trying you show login button and status of login. if user already loggedin for facebook in any other tab it shows LOGGED IN. or if not it shows NOT LOGGED in. or if user loggedin and already gave us permission for access basic information it shows LOGGED IN AUTHORIZED.

but here i am getting error

Error: b is undefined Source File: http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US Line: 7

please help me

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.