如何通过API(Php SDK)以管理员身份发布到Facebook页面?

前端之家收集整理的这篇文章主要介绍了如何通过API(Php SDK)以管理员身份发布到Facebook页面?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道如何使用 PHP SDK通过API发布到Facebook页面的帖子,如下所示:
$facebook->api('/xxxxxxxxxxx/Feed','post',array('message'=> 'Hello world!','cb' => ''));

其中xxxxxxxxxxx是页面ID;)

但是这样做,我作为我发布到那个页面,杰米,而不是作为页面本身(管理员).
那么如何以Admin / Page而不是我自己的身份发布?

谢谢你的时间!

答案(对于懒人):

首先,您需要确保您有权管理用户页面,例如:

<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',array('message'=> 'Hello!','access_token' => $access_token,'cb' => ''));
查看有关您的问题的此说明: http://developers.facebook.com/docs/api>授权>页面模仿.

简而言之,您需要manage_pages扩展权限.

顺便说一句,你先检查过this吗?

原文链接:https://www.f2er.com/php/134702.html

猜你在找的PHP相关文章