我想用应用程序名称将状态消息写入我的应用程序页面。
我正在使用
$app_id = 'ID OF MY APPLICATON'
$facebook->api($app_id.'/feed', 'POST', array('message' => 'test'));
在帖子写完后我的名字显示但是我想要显示的应用程序名称而不是我的名字,这可能吗?
答案 0 :(得分:4)
应用程序页面与粉丝页面的工作方式相同,因此您只需按照粉丝页面发布的方式进行操作
关键是使用页面中的access_token,而不是用户帐户的access_token
$result = $facebook->api("/me/accounts");
foreach($result["data"] as $page) {
if($page["id"] == $page_id) {
$page_access_token = $page["access_token"];
break;
}
}
$args = array(
'access_token' => $page_access_token,
'message' => "I'm a Page!"
);
$post_id = $facebook->api("/$page_id/feed","post",$args);