我知道如何使用PHP SDK通过API发布到Facebook页面的帖子,如下所示:
$facebook->api('/xxxxxxxxxxx/feed', 'post', array('message'=> 'Hello world!', 'cb' => ''));
其中xxxxxxxxxxx是页面ID;)
但是这样做,我作为我发布到那个页面,杰米,而不是作为页面本身(管理员) 那么如何以管理员/页面而不是自己的身份发布?
谢谢你的时间!
答案(对于懒人):
首先,您需要确保您有权管理用户的页面,例如:
<fb:login-button autologoutlink="true" perms="manage_pages"></fb:login-button>
现在,您获得了每个页面用户都可以访问的特殊令牌 PHP SDK示例:
//Get pages user id admin for
$fb_accounts = $facebook->api('/me/accounts');
//$fb_accounts is now an array
//holding all data on the pages user is admin for,
//we are interested in access_token
//We save the token for one of the pages into a variable
$access_token = $fb_accounts['data'][0]['access_token'];
//We can now update a Page as Admin
$facebook->api('/PAGE_ID/feed', 'post', array('message'=> 'Hello!', 'access_token' => $access_token, 'cb' => ''));
答案 0 :(得分:6)
查看有关您问题的说明:http://developers.facebook.com/docs/api&gt;授权&gt;页面模仿。
长话短说,您需要manage_pages
扩展权限。
顺便说一句,你先检查过this吗?