0

我正在开发一个博客模块。当管理员添加新博客帖子时,将在页面的 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

4

1 回答 1

1

作为页面进行身份验证应该可以为您解决问题:https ://developers.facebook.com/docs/authentication/pages/

于 2012-09-03T11:58:23.490 回答