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 been trying to add Javascript Facebook sdk to my site. I thought i done everthink i should have done but its not working. If any one know what i have one wrong it be a great help.

https://developers.facebook.com/docs/reference/javascript/FB.login/

I am not sure what i done wrong on this.

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
</head>

<div id="fb-root"></div>

<script>

// Additional JS functions here

window.fbAsyncInit = function() {

FB.init({

appId : '276*********', // App ID

channelUrl : '//http://fall*****************.com/', // Channel File

status : true, // check login status

cookie : true, // enable cookies to allow the server to access the session

xfbml : true // parse XFBML

});

FB.getLoginStatus(function(response) {

if (response.status === 'connected') {

// connected

} else if (response.status === 'not_authorized') {

// not_authorized

} else {

// not_logged_in

}

});

};

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



</script>

function login() {
 FB.login(function(response) {
       if (response.authResponse) {
           // connected
      } else {
            // cancelled
      }
 });
}

// Additional init code here
FB.getLoginStatus(function(response) {
 if (response.status === 'connected') {
       // connected
 } else if (response.status === 'not_authorized') {
     // not_authorized
        login();
  } else {
        // not_logged_in
       login();
 }
});

function testAPI() {
   console.log('Welcome!  Fetching your information.... ');
  FB.api('/me', function(response) {
      console.log('Good to see you, ' + response.name + '.');
  });
}

function login() {
    FB.login(function(response) {
        if (response.authResponse) {
            // connected
                           testAPI();
        } else {
           // cancelled
        }
  });
}



<body>
</body>
</html>





<script src="//connect.facebook.net/en_US/all.js"></script>
share|improve this question
Your channelUrl seems to be wrong. And in the second part, you call FB.getLoginStatus without waiting for initialization of the SDK. (Or is that code really outside of a <script> element? Then it does not even make sense there.) Apart from that, “its not working” is not a useful problem description. Please do some real debugging, for example check your browser’s error console. – CBroe Nov 19 '12 at 15:07

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.