I use the following PHP code to publish random messages from my database to my Facebook fan page:
require_once('src/facebook.php');
$appid = 'MY_APP_ID';
$appsecret = 'APP_SECRET';
$pageid = 'MY_PAGE_ID';
$token = 'MY_ACCESS_TOKEN';
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
'appId' => $appid,
'secret' => $appsecret,
));
$message = 'Hello World';
//Information that makes up the facebook page post
$attachment = array(
'access_token' => $token,
'message' => $message
);
//Try to post to the facebook page
try{
$res = $facebook->api('/'.$pageid.'/feed','POST',$attachment);
} catch (Exception $e){
echo $e->getMessage();
}
And here is src/facebook.php - https://github.com/facebook/facebook-php-sdk/blob/master/src/facebook.php
But it return the error message something like this:
Error validating access token: Session has expired at unix time 1339020000. The current unix time is 1339022625.
So my question is what changes should I do in my code ?
P.S: I also looked relevant questions about session expiration, but none of them helped me.
Thanks in advance.

access_tokenbutoffline_accesspermission (which was used to get "permanent"access_token) – Juicy Scripter Jun 7 '12 at 11:40