我正在开发一个博客模块。当管理员添加新博客帖子时,将在页面的 facebook 墙上发布新帖子(我们称之为Mypage
)。它的代码是:
$_accessKey = FB_ACCESS_KEY;
$_feedId = FB_FEED_ID;
$attachment = array(
'access_token' => $_accessKey,
'message' => $postData['message'],
'name' => $postData['name'],
'description' => $postData['caption']
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'https://graph.facebook.com/'.$_feedId.'/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_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close ($ch);
在上面的代码中:
FB_ACCESS_KEY
是来自用户的应用程序的访问令牌Test
FB_FEED_ID
是页面的提要 id。
现在发布到 的Mypage
工作正常,但帖子以Added by Test
.
我怎样才能使帖子就好像它是自己制作的一样Mypage
?
Test
是页面的管理员Mypage
。