Infact this will not work, as tokens expire pretty fast. The offline_access was also removed so the user has to explicit use the facebook app when you want to maintain the connection with him (you simply wont be able to do anything when the token is expired).
You can still save the current token for login purposes but you should update the user table every time a user logs in via FB again.
Also, you can not login via token but you can get the token in JS OR PHP pretty easy.
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
//user is logged in and has accepted you apps stuff.
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
// do some fancy ajax function to send the token to the server here.
}
else if (response.status === 'not_authorized') {
// the user is logged in to Facebook,
// but has not authenticated your app
FB.login(function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.name + '.');
});
} else {
console.log('User cancelled login or did not fully authorize.');
}
}), {scope: 'email,user_likes'}); //specify all the scopes you need for your app here.
}
else
{
//user is not logged in to facebook.
}
});
that would be the JS part to get the token and if you want to get it with PHP, it is even easier.
<?php
require_once("/FBAPI/src/facebook.php");
$config = array();
$config['appId'] = 'your_app_id';
$config['secret'] = 'your_app_secret';
$facebook = new Facebook($config);
$user = $facebook->getUser();
if(!$user){
$loginUrl = $facebook->getLoginUrl(array('scope'=>'publish_stream', 'redirect_uri'=>'http://www.example.com'));
}
if($user){
try{
$user_profile = $facebook->api('/me');
$access_token = $facebook->getAccessToken();
}
catch(FacebookApiException $e){
error_log($e);
$user = NULL;
}
}
else{
echo '<a href="'.$loginUrl.'"><img src="img/login.png"/></a>';
}
?>
EDIT: infact, you can just do it like this:
Display landing page for the login and let the user login via JS. As soon as the Login Process is done, you can check if the user is logged in via the $facebook->getUser(); function of the PHP SDK