开发者

How to post to Facebookpage as admin via API (Php SDK)?

开发者 https://www.devze.com 2023-01-29 04:49 出处:网络
I know how to make a post to a Facebook page via the API using PHP SDK, that is done like this: $facebook->api(\'/xxxxxxxxxxx/feed\', \'post\', array(\'message\'=> \'Hello world!\', \'cb\' =>

I know how to make a post to a Facebook page via the API using PHP SDK, that is done like this:

$facebook->api('/xxxxxxxxxxx/feed', 'post', array('message'=> 'Hello world!', 'cb' => ''));

Where xxxxxxxxxxx is page id ;)

But doing that, I post to that page as me, Jamie, and not as the Page itself (admin).

So how do I post as Admin/Page instead of myself?

Thanks you for your time!

ANSWER (for lazy people):

First of all you need to make sure you have access to manage pages for user, ex:

<fb:login-button autologoutlink="true" perms="manag开发者_运维技巧e_pages"></fb:login-button>

Now you also gets a special token for every page user have access to once you get them.

PHP SDK Example:

//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' => ''));


Check out this note regarding your question: http://developers.facebook.com/docs/api > Authorization > Page impersonation.

Long story short, you need the manage_pages extended permission.

And btw, have you checked this first ?

0

精彩评论

暂无评论...
验证码 换一张
取 消