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 using Facebook JavaScript SDK to log in with Facebook, the only problem is that the JavaScript code executed after the controller.

all i want is to check if the user logged in before going to the controller.

Any help?

This is the java script Code

<script type="text/javascript">
window.fbAsyncInit = function () {
    FB.init({ appId: '@Facebook.FacebookApplication.Current.AppId', channelURL: '@Request.Url.Scheme://@Request.Url.Authority@Url.Content("~/fbchannel.ashx")', cookie: true, xfbml: true, oauth: true });
    FB.Event.subscribe('auth.login', function (response) { window.location.reload(); });
    FB.Event.subscribe('auth.logout', function (response) { window.location.reload(); });
    FB.Event.subscribe('auth.authResponseChange', function (response) {
        if (response.status === 'connected') {
            var uid = response.authResponse.userID;
            var accessToken = response.authResponse.accessToken;
            $.ajax({
                url: '/Home/SaveAccess',
                type: 'POST',
                data: { A: accessToken },
                success: function (data) {
                },
                error: function() {}
            });
            var field = document.createElement("input");
            field.setAttribute("type", "hidden");
            field.setAttribute("name", 'accessToken');
            field.setAttribute("value", accessToken);
            form.appendChild(field);

            document.body.appendChild(form);
            form.submit();


        } else if (response.status === 'not_authorized') {
            var uid = response.authResponse.userID;
            var accessToken = response.authResponse.accessToken;
            $.ajax({
                url: '/Home/SaveAccess',
                type: 'POST',
                data: { A: accessToken },
                success: function () {
                }
            });
        } else {
        }
    });
(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));

i save the Access Token in a session, the problem is that this code executed after the controller code.

share|improve this question
Please elaborate more or post some code. Don't leave things to assumptions. – Subir Kumar Sao Feb 28 at 12:49
I added Some code for you to look at. – Ibrahem Ahmed Shehata Feb 28 at 13:13

1 Answer

Didn't understand exactly what you wanted. Here's a solution for what I did.

You can call FB.getLoginStatus anytime to check if the user is connected or not.

    FB.getLoginStatus(function (response) {
        if (response.status === 'connected') {
              // user logged in and connected        
       }
    });

You can also add this in the fbAsyncInit to check user status every time the page loads.

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.