我在这里发布这个问题是因为我在任何地方都找不到针对我的具体案例的答案。
我创建了一个服务器端 PHP 应用程序,它每周都会在我们的 FB 粉丝页面上自动发布/展示一个指向我们产品之一的链接,随机。
该脚本在 10 天前一直运行良好,现在手动调用脚本时出现以下错误:
Fatal error: Uncaught OAuthException: Error validating access token: Session has expired at unix time 1355862507. The current unix time is 1356217401. thrown in /home/webadmin/virtualsheetmusic.com/html/facebook/API/base_facebook.php on line 1249
现在,我发现问题出在传递的 access_token 中,但我不知道如何以我在此应用程序中使用的格式生成一个新的。
这是我们迄今为止一直使用的令牌格式:
$fanpagetoken = '<REMOVED ACCESS TOKEN FROM TEXT>';
这是我们用于在墙上发布的 PHP 代码:
#Define vars...
$day = strtotime($today);
$day = date("l, F j, Y", $day);
$deadline = strtotime("+1 week");
$deadline = date("l, F j, Y", $deadline);
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
'appId' => $appid,
'secret' => $secret,
));
$attachment = array(
'access_token' => $fanpagetoken,
'message' => "Sheet Music Showcase for ".$day.":",
'name' => $headline,
'caption' => "Showcase Expiration: $deadline",
'link' => 'http://www.ourwebsite.com/s/'.$createsession,
'description' => 'View the complete high quality PDF sheet music file, listen to related audio files and more!',
'picture' => 'http://www.virtualsheetmusic.com/images/icons/new_downloadsHome/'.$mainid.'.gif',
'actions' => array(array('name' => 'Learn more...',
'link' => 'http://www.virtualsheetmusic.com/s/'.$createsession))
);
$result = $facebook->api('/oursitefanpage/feed/',
'post',
$attachment);
如何生成该格式的新令牌?
非常欢迎任何帮助!
提前感谢您的任何想法
最好的,法布。