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 add login button as shown below,but something go wrong. First two times I get facebook login window,but then something fails. When login window starts open it closed.When I step by step trace functions invoking I find thet onConnect() function is not invoking.Any ideas?

my View:

    <script type="text/javascript">

    $(document).ready(function () {

    if (document.getElementById('fb-root') != undefined) {
        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); 
    }
});

window.fbAsyncInit = function () {
    FB.init({ appId: '455724271129246', status: true, cookie: false, xfbml: true, oauth: true });
};

function onConnect() { 
    FB.getLoginStatus(function (response) {

        if (response.session) {
            window.location = "../LogOn/FbLogin?token=" + response.session.access_token;
        } else {
            // if user cancel
        }
    });
};

    </script>

     <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
 <body>
     <div id="fb-root"></div>
    <fb:login-button perms="email,user_checkins"
        onlogin="onConnect();" autologoutlink="false">
    </fb:login-button>
</body>

my controller:

      public ActionResult FbLogin(string token)
    {
        WebClient client = new WebClient();
        string JsonResult = client.DownloadString(string.Concat("https://graph.facebook.com/me?access_token=", token));
        JObject jsonUserInfo = JObject.Parse(JsonResult);
        UInt64 facebook_userID = jsonUserInfo.Value<UInt64>("id");
        string username = jsonUserInfo.Value<string>("username");
        string email = jsonUserInfo.Value<string>("email");
        ViewData["email"] = email;
        return View();
    }
share|improve this question

1 Answer

Try adding a subscribe event:

    FB.Event.subscribe('auth.login', function (response) {
        //do whatever
        login();
        // or onConnect(); 

    });
    FB.Event.subscribe('auth.logout', function (response) {
        //do whatever
        logout();

    });
share|improve this answer
after adding first function button not displaying yet) – user1510685 Aug 4 '12 at 23:13
Then look into your browser’s error console for … well, errors. – CBroe Aug 4 '12 at 23:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.