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 am facing issues while integrating Facebook Connect Feature to simple HTML page. I am doing it via Javascript code.

Here is HTML namespace:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

Here is Javascript code:

window.fbAsyncInit = function() {
      FB.init({appId: 'xxxxxxxxxxxxxxx', status: true, cookie: true, xfbml: true});
      /* All the events registered */
        FB.Event.subscribe('auth.login', function(response) {
        // do something with response
            alert("Logged in...");
        });
        FB.Event.subscribe('auth.logout', function(response) {
        // do something with response
            alert("Logged out...");
        });

        FB.getLoginStatus(function(response) {
        if (response.session) {
         // logged in and connected user, someone you know
            alert("Logged in...");
        }
        });
    };
(function() {
    var e = document.createElement('script');
    e.type = 'text/javascript';
    e.src = document.location.protocol +
        '//connect.facebook.net/en_US/all.js';
    e.async = true;
    document.getElementById('fb-root').appendChild(e);
}());

Here is Facebook Connect button HTML code:

<table>
<tr>
    <td><fb:login-button size="large" autologoutlink="true" perms="email,user_birthday,status_update,publish_stream"> Connect with Facebook </fb:login-button>
      </td>
</tr>
</table>

But when I login with my facebook credentials, NONE of the Javascript functions are being get invoked. Please help!

share|improve this question
Try finding out solution here : developers.facebook.com/docs/guides/web/#login – Fredy Aug 13 '12 at 8:44
@Fredy did not find anything useful :( – Nida Sulheri Aug 13 '12 at 9:29
What does the console tell you? Any errors? Where do you put the script? Is the FB object defined? – Lego Aug 13 '12 at 9:43
@Lego No errors. It does nothing, no javascript function is executed. Can you please explain that what FB Object you are referring to? – Nida Sulheri Aug 13 '12 at 9: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.