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 facebook connect in my website for the first time.

I've created an app and I copied the code from here AS IS to a blank HTML file http://developers.facebook.com/docs/guides/web/#login

but all I see is a plain text - "Login with Facebook" - no button, no functionality.

what can be the problem?

The code is -

<html>
    <head>
      <title>My Facebook Login Page</title>
    </head>
    <body>
      <div id="fb-root"></div>
      <script>
        window.fbAsyncInit = function() {
          FB.init({
            appId      : 'XXXXXXX',
            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>
    </body>
 </html>
share|improve this question
Any updates on this question? – jean27 Feb 6 '12 at 7:14
I gave up and did it in another way.. thank you all – TamarG Feb 6 '12 at 10:53
Its worth adding an answer to what you did exactly and marking that as the answer. You can accept your own answer here on SO. Having a higher accept rate can help you get better answers more quickly, as some users won't bother answering questions from users with low accept rates. – Tim Coker Apr 24 '12 at 11:57

2 Answers

Try adding an XML namespace to the <html> tag of your document.

<html xmlns:fb="http://ogp.me/ns/fb#">

...then try the following for your login button:

<fb:login-button></fb:login-button>
share|improve this answer

From what I noticed from your HTML code, you lack the tag that links to Facebook's JS SDK.

Add this:

 <script src="https://connect.facebook.net/en_US/all.js#appId={YOUR_FACEBOOK_APP_ID}&xfbml=1"></script>

Then instead of doing

 <div class="fb-login-button">Login with Facebook</div>

do

 <fb:login-button></fb:login-button>

just as what Charley P. answered.

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.