I've just moved my app from one host to another, and when I try to log in I get the following error:
Fatal error: Uncaught OAuthException: Invalid OAuth access token signature. thrown in /blah/src/base_facebook.php on line 1106
My app code, secret and url are all correct for the new host and app (I created a new app so I could leave the files on the old host as a working backup).
Any idea what else could be wrong?
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
'appId' => 'xxxxxxxxxxxxxxxx',
'secret' => 'xxxxxxxxxxxxxxxx',
));
// 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');
$data2 = $facebook->api('/me', 'get', array("fields"=>"work"));
echo $data2['work']['employer'];
$ret = $facebook->api( array(
'method' => 'fql.query',
'query' => 'SELECT affiliations FROM user WHERE uid = me()',
));
//echo $ret['0']['affiliations']['0']['name'];
//echo ", ";
//echo $ret['0']['affiliations']['1']['name'];
$sql = mysql_query("SELECT * FROM xx_users WHERE user_id=$user_profile[id]");
if (mysql_num_rows($sql) == 0) {
$data = $facebook->api('/me', 'get', array("fields"=>"location"));
$location = $data['location']['name'];
mysql_query("INSERT INTO xx_users (name, user_id, email, location)
VALUES ('$user_profile[name]', '$user_profile[id]', '$user_profile[email]', '$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.
));
}