Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to extend the access tokens of my users which are logged in to my website by using Facebook.

Currently, when a user leaves the website, I set a cookie, which contains the user-id. When a user comes back to my website, after 25 days, he will be still logged in with use of the cookie.

At that moment, when my website uses the cookie to let the user still be logged in, I would like to make a call to facebook for extending the access token.

This is my code:

 <? session_start();

if (isset($_COOKIE['login-save']) && empty($_SESSION['login'])) {


require('facebook.php');
require('fbconfig.php');

$sql = "SELECT *
        FROM users
        WHERE user_id = '".$_COOKIE['login-save']."'
        ORDER BY user_id DESC LIMIT 1";
$result = $Db->sQuery($sql);
$login_user = mysql_fetch_array($result);

$_SESSION['login'] = $_COOKIE['login-save'];
$_SESSION['user_id'] = $login_user['user_id'];
$_SESSION['user_pic'] = $login_user['user_pic'];
$_SESSION['user_name'] = $login_user['user_name'];
$_SESSION['user_type'] = $login_user['oauth_provider'];
$_SESSION['user_uid'] = $login_user['oauth_uid'];
$_SESSION['user_token'] = $login_user['oauth_token'];
$_SESSION['fb_active'] = $login_user['fb_active'];
$_SESSION['active'] = $login_user['active'];
setcookie("login-save", $_SESSION['user_id'], time()+2592000); 

$extend = $facebook->setExtendedAccessToken();

 } 

 ?>

When I echo the $extend variable, nothing is shown. So it looks like the setExtendedAccessToken function of the Facebook PHP SDK isn't working..... can someone help me out?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.