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 using the Facebook login code as such:

    FB.init({
        appId      : '########',
        status     : true, 
        cookie     : true,
        xfbml      : true,
        oauth      : true,
      });

      FB.Event.subscribe('auth.login', function (response) {
        window.location = "call php script in here";
      });
    };


    (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);

The PHP script called then assigns $_SESSION variables and redirects the user into 'inner pages'.

If I close tab and revisit the site, I am automatically logged into the 'inner pages' and I skip the home page without the auth.login firing. This is good.

The problem is that if I close the browser and then visit the same site, I land on the home page first and THEN I am redirected into the 'inner page' (I think by the FB.event.subscribe).

How do I make the user simply skip the landing page at all times (even when the browser is closed and then reopened)? It gets very annoying to view other parts of the site only to be redirected away as the auth.login fires.

share|improve this question
1  
If you use the PHP SDK, then you can check in the backend if the user is already logged in and do the redirect server-side. – Michael Mior Jul 14 '12 at 3:51

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.