I am building an app that imports friends data into a local database and it's working fine.
I am trying to create a script that is run by a daily cron that will iterate through the user profiles in the local database and updates the friend data.
I am using the PHP SDK.
I have enabled the depreacte_offline_access flag.
Does this mean the access token will automatically expire in 60 days or do I need to do anything else?
If a user signes out of the app or facebook in the same browser can I still retrieve the profile data from the cron script?
Am I correct in thinking that all I need to do is retrive the access token with:
$access_token = $facebook->getAccessToken();
then store it in a database and then set the access token with:
$facebook->setAccessToken($new_access_token);
and then retieve the profile with
$facebook->getUser('/me');
?
Also how can I view the expiration date of the access token?
Below is a script to iterate through and retreive profiles but if I run it in the browser it only works for the current signed in user or I get the exception "OAuthException: Error validating access token: The session is invalid because the user logged out. "
<?php
require_once(THEME_INCLUDES_PATH . 'facebook.php');
$config = array();
$config['appId'] = APP_ID;
$config['secret'] = APP_SECRET;
$config['fileUpload'] = false; // optional
$facebook = new Facebook($config);
$sql = "SELECT `access_token` FROM `fb_user`";
$result = $db1->db_query($sql);
while($details = $db1->db_fetch_array($result)){
if($details['access_token']){
$facebook->setAccessToken($details['access_token']);
$fb_user = $facebook->getUser('/me');
if($fb_user){
try {
$fb_profile = $facebook->api('/me');
print_r( $fb_profile);
}
catch (FacebookApiException $e){
echo $e;
$fb_user = false;
}
}
}
}
?>