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.