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.

The code below renders a form with a "broken image" icon and "undefined" beneath. I am using it while my browser is signed in to Facebook.

What do I need to get a working "sign in with Facebook" message and let the system register "Facebook said the user signed in?"

    <table class="table-form">
        <tr>
            <td colspan="2">
      <div id="fb-root"></div>
    <script src="//connect.facebook.net/en_US/all.js"></script>
      <script>
        window.fbAsyncInit = function() {
          FB.init({
            appId      : '269802683049955', // App ID
            // channelUrl : 'html', // Channel File
            status     : true, // check login status
            cookie     : true, // enable cookies to allow the server to access the session
            xfbml      : true  // parse XFBML
          });
          FB.api('/me', function(user) {
            if (user) {
              var image = document.getElementById('image');
              image.src = 'https://graph.facebook.com/' + user.id + '/picture';
              var name = document.getElementById('name');
              name.innerHTML = user.name
            }
          });
        };
        // 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>

      <div align="center">
        <img id="image"/>
        <div id="name"></div>
      </div>


            </td>
        </tr>
        <tr><th><label for="id_email">Email:</label></th><td><input type="text" name="email" id="id_email" /></td></tr>
<tr><th><label for="id_password">Password:</label></th><td><input type="password" name="password" id="id_password" /><input type="hidden" name="redirect_to" id="id_redirect_to" /></td></tr>

--EDIT in response to Igy's helpful question--

What I am doing, perhaps based on the wrong code, is to create a "Log in with Facebook" button which, when clicked, open presumably a popup window asking for their Facebook credentials if they are not authenticated, and whether or not authenticated request the permissions desired for the app. And then ping us back with the user's email or username on consent.

share|improve this question
1  
Where's your code that logs the user in and lets them authenticate your app so you have a value for user? – Igy Jan 14 at 19:47

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.