I've read the Facebook Documentation countless times now, I've also adapted the PHP/JS example that comes with the SDK and looked all over stackoverflow to try and find a solution, yet nothing seems to really work over all so I've decided to go back to the drawling board. Also, I am using P3P and declaring xmlns:fb="http://ogp.me/ns/fb#" in the <HTML> tag
The issue is simple; when I use the <fb:login-button> with the javascript SDK I am able to gain access, the PHP SDK seems to take it from there as I am have to users information after a few page loads and/or idle time the web app goes to seemingly a logged out state where the <fb:login-button> is presented again when the button is pressed a popup opens and quick closes and you are stuck on that same page as nothing changes. If you manual refresh your browser you are back in the app and pushing functioning normally.
Now clearly a few questions come to mind while reading the above text and so I will lightly explain to you the basic code flow. I'd also like to note this application I am building will need to function as a Canvas App, Page App, and off-site "mobile/desktop web app" and so far the setup that half works does work in all of these places clearly there is just a small bug that keeps logging me out. I am hopefully looking for a total fix not just a refresh patch unless that is truly the issue. Thank You!
The Code flow:
(1) The PHP Controller loads the PHP SDK upon loading of the website and sets $fBSdk = $fb->fBSdk() which calls the method below.
public function fBSdk() {
$this->facebook = new Facebook(array(
'appId' => '1234567890',
'secret' => 'asdf123qwerty',
'cookie' => true,
));
$this->user = $this->facebook->getUser(); //Store in FB Class
if ($this->user) {
try {
$this->user_profile = $this->facebook->api('/me');
} catch (FacebookApiException $e) {
$this->user = null;
}
}
if ($this->user) {
return true;
}
else {
return false;
}
}
(2) The $fBSdk variable is then checked to see if it is === false, which is is and the login button is loaded as well as the Javascript SDK
if ($fBSdk === false) {
//Show the LOG IN Page & Button
//...
echo '<fb:login-button size="xlarge" perms="email,user_likes,friends_likes,publish_actions,publish_stream,read_friendlists"></fb:login-button>';
//...
}
(3) The Login page loads including the Javascript SDK, which is located on the page after the [Google Analytics Code] which is loaded after the <body> tags so the FB JS code is right at the top.
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId: '1234567890',
channelUrl: '//www.someDomain.com/dev/channel.php',
status: true,
cookie: true,
xfbml: true,
oauth: true,
});
//Used to Reload AFTER login (doesn't fire with above issue)
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
FB.Event.subscribe('auth.logout', function(response) {
window.location.reload();
});
FB.Canvas.setSize({ width: 810 });
FB.Canvas.setAutoGrow();
};
(function(d, debug){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0]
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/ false));
</script>
(5) The user information is used with in the app in various places the most common and model example, as they are all used pretty close is getID() and getFirstName() who has code that look like:
//Note: $this->user_profile is in the FB class and
// is set in set on Line 7 of Example 1 above.
public function getID() {
return $this->user_profile['id'];
}
(6) The user then clicks the login button and controller is fired again, the $fBSdk variable is checked again and the variable is set to true thus firing the else { ... } statement.
[This code goes through the URL mapper and variables presented to presents the correct page,
the user continues to surf the site where this is process is repeated until one time something
unknown happens that the variable `$fBSdk` is strict equal to `false` and the login button
is presented again, but the clicking of the button does nothing to show a logged in user.]
UPDATE 1:
I was echoing the $fBSdk to see if the === false) was an issue and it does not seem to be.
UPDATE 2:
So I got logged out again and I decided to look for the cookie fbsr_1234567890 and it had disappeared so I clicked the Facebook "Log In" button and though the page did NOT refresh like it was suppose to, it did create the cookie. And here is what I found:
Domain: .www.someDomain.com
Path: /
Send for: Any kind of connection
Accessible to script: Yes
Created: Tuesday, January 8, 2013 11:13:07 AM
Expires: Tuesday, January 8, 2013 1:00:00 PM
clearly the the dot (.) before the www is an issue it should be for *.someDomain.com and that does not seem to be the case, it is important to note that I am currently on does in fact include the "www". Also if you notice the expiration date is not any time soon so kicking me out for no reason, so the question is why does facebook php or js (not sure) keep removing or invalidation the cookie, maybe I should break down the cookie...
If you have any suggestions please help.
UPDATE 3:
I went into FB's App senting and changed the domain to someDomain.com (removing the www) and that seem to set the cookie correctly with .someDomain.com (instead of .www.someDomain) so thats alway a plus. I also read about some others having issues with the domains not matching up correctly but that seems to have been fixed. I still cannot extract the access token from the cookie though so that is something that I need to figure out.