我一直在尝试用两天时间将从Twitter搜索收集的邮件自动发布到我的某个Facebook页面 - 即通过cronjob。
推特部分很好,但对于我的生活,我无法让Facebook部分工作。
问题是我的脚本工作......直到它没有,通常access_token在几个小时后过期。
现在我收到此消息:
#200) Posts where the actor is a page cannot also include a target_id
。
我在各种SO线程上尝试了很多建议。问题是:Facebook API似乎经常发生变化,而以前的工作方式却没有。
欢迎任何有关如何使其可靠运行的想法和建议。
这是我到目前为止的代码。我创建了一个Facebook应用,并使用FB Graph Explorer和'/ me / account'请求生成了一个访问令牌。
require('config.inc.php');
require('_classes/facebook-php-sdk/src/facebook.php');
// Connect to facebook
$facebook = new Facebook(array(
'appId' => FB_APP_ID,
'secret' => FB_APP_SECRET,
));
// get the message
$msg_body = array(
'message' => $message->message."\n".'(via http://twitter.com/'.$message->author.')',
'access_token' => FB_ACCESS_TOKEN
);
// Post to Facebook
$fb_result=0;
try {
$postResult = $facebook->api('/'.PAGEID.'/feed', 'post', $msg_body );
} catch (FacebookApiException $e) {
echo $e->getMessage();
}
if($postResult)
{
$fb_result=1;
$last_posted_tweet_id = $message->id;
file_put_contents(FOLDER.LAST_TWEET_ID_FILE, $last_posted_tweet_id);
echo 'Your message '.$message->id.' is posted on your facebook wall.';
//print_r($msg_body);
}
处可见
答案 0 :(得分:10)
我遇到了与访问令牌过期类似的问题。事实证明,您可以将您的令牌换成“长寿”令牌
管理我的代码:
try{
$token = $facebook->getAccessToken();
// get "long-lived" access token
$curl = new Curl();
$curl->setSsl();
$exchange_url = "https://graph.facebook.com/oauth/access_token?client_id=".$facebook_app_id."&client_secret=".$facebook_app_secret."&grant_type=fb_exchange_token&fb_exchange_token=".$token;
$page = $curl->get($exchange_url);
if ($page){
$page = explode("access_token=", $page);
if (count($page) > 1){
$page = explode("&", $page[1]);
$token = $page[0];
$facebook->setAccessToken($token);
}
}
} catch(Exception $e){
$token = '';
}
答案 1 :(得分:1)
他们是你可以使用的其他选择,对我来说,我发现使用Twitter Api更容易同时在twiiter和facebook上发表评论。我将它链接到Facebook,它的工作非常好,您只需要更改twitter api密钥并提供数据。如果您对此解决方案感兴趣,请告诉我,我将在此处发布代码