I am using the Facebook API to allow the user to log in with Facebook then check through a series of posts (at the moment only ten or so, but later many more) and return the ones where the poster is:
- Facebook friends with the user
- A friend of a friend
- In the same current location as the user
- In the same network as the user
This works, and I have a dropdown that can display only one of the above categories, but the problem is that it takes ages to load each change. I'd like it to be as close as instant as possible, but it takes several seconds, too slow for a user.
I know one problem is that I'm loading the Facebook API on every page (rather than just when logging in), but I'm not sure how to avoid that. Is there anything else I can do to speed it up?
EDIT
My attempt at sessions is below. This is fbconnect.php which is echoed in header.php:
require 'src/facebook.php';
if (!$_SESSION['user']) {
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
'appId' => 'xxx',
'secret' => 'xxx',
));
// Get User ID
$user = $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) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me', 'GET');
$ret = $facebook->api( array(
'method' => 'fql.query',
'query' => 'SELECT affiliations FROM user WHERE uid = me()',
));
$network = $ret['0']['affiliations']['0']['name'];
//echo $network;
$data = $facebook->api('/me', 'get', array("fields"=>"location"));
$location = $data['location']['name'];
$sql = mysql_query("SELECT * FROM xx_users WHERE user_id=$user_profile[id]");
if (mysql_num_rows($sql) == 0) {
mysql_query("INSERT INTO xx_users (name, user_id, email, network, location)
VALUES ('$user_profile[name]', '$user_profile[id]', '$user_profile[email]', '$network', '$location')");
}
else {
}
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
// Login or logout url will be needed depending on current user state.
if ($user) {
$logoutUrl = $facebook->getLogoutUrl();
} else {
// $loginUrl = $facebook->getLoginUrl();
$loginUrl = $facebook->getLoginUrl(array(
'scope' => 'email, user_location, user_work_history, user_education_history', // Permissions to request from the user
'redirect_uri' => 'http://comfyshoulderrest.com/socialexchange/home.php', // URL to redirect the user to once the login/authorization process is complete.
));
}
$_SESSION['user'] = $user;
}
else {
$logoutUrl = "logout.php";
}