我是FB应用和FB页面的管理员(但是这个页面在一个单独的帐户上)。如何使用FB API和PHP通过此FB应用程序向此页面的墙发布内容(为了能够使用CRON)?那可能吗?提前感谢您的回答!
答案 0 :(得分:1)
是的,这是可能的。
首先,代表其发布的页面是使用页面访问令牌完成的。
使用权限manage_pages
从您的应用中获取正常令牌(可能直接使用Graph API Explorer从右上角的下拉菜单中选择您的应用),然后按照我提到的步骤操作在这里:https://stackoverflow.com/a/18322405/1343690 - 这将为您提供永不过期的页面访问令牌。
将其保存在某处并在发布时与您的cron-job一起使用。发布代码 -
$url = 'https://graph.facebook.com/{page-id}/feed';
$attachment = array(
'access_token' => $page_access_token,
'message' => '{your-message}'
);
$result = PostUsingCurl($url, $attachment);
$result = json_decode($result, TRUE);
if( isset($result['error']) ) {
echo "Error: ".$result['error']['message']."<br/>";
}
else{
echo "Feed posted successfully!<br/>";
}
function PostUsingCurl($url, $attachment)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close ($ch);
return $result;
}
答案 1 :(得分:0)
将Api添加到您的页面
<script id="facebook-jssdk" src="//connect.facebook.net/en_US/all.js#xfbml=1"></script>`
点击功能调用fb页面
$('#facebook').click(function(){
FB.init({
appId: 12345, // your app ID
status: true,
cookie: true
});
FB.ui({
method: 'feed',
name: "post name",
link: "http://postlink.com,
//picture: "http:/imageurl.com,
description: "this is the body of the text"
});
})
答案 2 :(得分:0)
我亲自使用这个。虽然您需要已经生成了access_token。如果不这样做,您可以使用Facebook's Graph Explorer tool向您的帐户授予相应的权限。
$attachment = array(
"access_token" => $fb_token,
"link" => "$postLink",
"name" => "$postName",
"description" => "$postDescription",
"message" => "$postMessage",
"fb:explicitly_shared" => true
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'https://graph.facebook.com/'.$fb_page_id.'/feed');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //to suppress the curl output
$result = curl_exec($ch);
curl_close ($ch);
希望这会有所帮助!