I'm currently working on cleaning up an application from some previous developers, and I'm encountering some weird issues.
The application is primarily used as a FB canvas app, but I also added the ability for it to be used outside of Facebook.
The code below is require_once'd into every page for Facebook authentication. Every few page loads, the application has to redirect back to Facebook for authentication, adding the ?state=x to the URL. This process is invisible to the user, since it just redirects to Facebook to get another cookie and redirects back, but when this happens during a POST request, it will fail to finish the request. And occasionally fails completely and yields the "Failed to connect to Facebook" error in the code below.
I recently upgraded to the very latest PHP SDK (3.2.2) and the problem seems to be mitigated; it doesn't re-authenticate every 3-5 requests, but it still has to re-authenticate when left idle for an hour or so. I thought the cookie was supposed to last a lot longer. Again, the reauth process is invisible to the user, but messes up some requests and may fail completely, so I'd like to resolve it.
Secondly, some users are failing to authenticate at all. I have one user who gets stuck in a redirect loop between Facebook and my application, which doesn't make sense since I added the $_SESSION['loggedin'] to keep track of how many times it's failed before yielding an error. (It's unset() when authentication completes) Re-adding the app doesn't fix this for the user either.
If anyone could give me insight into either of the issues, I'd greatly appreciate it. The code for my FB authentication is below.
<?php
if (!session_id()) { session_start(); }
//facebook application
$fbconfig['appid'] = 'xxx';
$fbconfig['api'] = 'xxx';
$fbconfig['secret'] = 'xxx';
//set application urls here
$fbconfig['baseUrl'] = 'http://fulfillmywishlist.com/';
$fbconfig['appBaseUrl'] = 'http://apps.facebook.com/fulfillmywishlist/';
try {
include_once "src/facebook.php";
} catch(Exception $o) {
echo '<pre>';
print_r($o);
echo '</pre>';
}
// Create our Application instance.
$facebook = new Facebook(array(
'appId' => $fbconfig['appid'],
'secret' => $fbconfig['secret'],
'cookie' => true,
'domain' => 'http://fulfillmywishlist.com'
));
//Facebook Authentication part
$access_token = $facebook->getAccessToken();
$user_id = $facebook->getUser();
// We may or may not have this data based
// on whether the user is logged in.
// If we have a $user id here, it means we know
// the user is logged into
// Facebook, but we don’t know if the access token is valid. An access
// token is invalid if the user logged out of Facebook.
if ($user_id) {
try {
$user_name = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$facebook->destroySession();
$loginUrl = $facebook->getLoginUrl(
array(
'domain' => 'http://fulfillmywishlist.com',
'scope' => 'email,user_photos,user_birthday,user_activities,user_location'
)
);
if(isset($_SESSION['loggedin']) && $_SESSION['loggedin'] >= 2) {
if(isset($_GET['popup'])) echo 'Failed to connect to Facebook. Please <a href="' . $loginUrl . '" onclick="window.close();" target="_blank">try again</a> or contact the administrator.';
else echo 'Failed to connect to Facebook. Please <a href="' . $loginUrl . '">try again</a> or contact the administrator.';
echo "<!-- " . $e->getMessage() . "\n"; var_dump($e->getTraceAsString());
} else {
header("Location:" . $loginUrl);
if(isset($_SESSION['loggedin']))
$_SESSION['loggedin']++;
else $_SESSION['loggedin'] = 1;
}
$user_id = null;
exit;
}
} else {
$loginUrl = $facebook->getLoginUrl(
array(
'domain' => 'http://fulfillmywishlist.com',
'scope' => 'email,user_photos,user_birthday,user_activities,user_location'
)
);
if(isset($_SESSION['loggedin']) && $_SESSION['loggedin'] >= 2) {
if(isset($_GET['popup'])) echo 'Failed to connect to Facebook. Please <a href="' . $loginUrl . '" onclick="window.close();" target="_blank">try again</a> or contact the administrator.';
else echo 'Failed to connect to Facebook. Please <a href="' . $loginUrl . '">try again</a> or contact the administrator.';
echo "<!-- No UserID :( ";
print_r($_REQUEST);
} else {
header("Location:" . $loginUrl);
if(isset($_SESSION['loggedin']))
$_SESSION['loggedin']++;
else $_SESSION['loggedin'] = 1;
}
exit;
}
if (!$user_id) {
$loginUrl = $facebook->getLoginUrl(
array(
'domain' => 'http://fulfillmywishlist.com',
'scope' => 'email,user_photos,user_birthday,user_activities,user_location'
)
);
if(isset($_SESSION['loggedin']) && $_SESSION['loggedin'] >= 2) {
if(isset($_GET['popup'])) echo 'Failed to connect to Facebook. Please <a href="' . $loginUrl . '" onclick="window.close();" target="_blank">try again</a> or contact the administrator.';
else echo 'Failed to connect to Facebook. Please <a href="' . $loginUrl . '">try again</a> or contact the administrator.';
echo "<!-- Woah, something went wrong!";
} else {
header("Location:" . $loginUrl);
if(isset($_SESSION['loggedin']))
$_SESSION['loggedin']++;
else $_SESSION['loggedin'] = 1;
}
exit;
}
unset($_SESSION['loggedin']);
?>