Post to facebook page wall as a page

回眸只為那壹抹淺笑 提交于 2020-01-22 12:42:56

问题


I want to post to facebook page wall as a page using PHP. I've got access_token by below links.

https://graph.facebook.com/oauth/authorize?type=user_agent&client_id=123456789&redirect_uri=http%3A%2F%2Fmysite.net&scope=publish_stream,manage_pages,offline_access
https://graph.facebook.com/me/accounts?access_token=...

I'm using this simple code:

$appid        = "";
$secret       = "";
$pageid       = "";
$access_token = "";

require_once("facebook-php-sdk/src/facebook.php");

$facebook = new Facebook(array(
  'appId'  => $appid,
  'secret' => $secret
));

try {
    $args = array(
        'access_token' => $access_token,
        'message'      => 'Test', 
        'link'         => 'http://www.test.com',
        'description'  => 'Test'
    );

    $post_id = $facebook->api("/$pageid/feed","post",$args);

} catch (FacebookApiException $e) {
    error_log($e);
}

And that's the error I'm getting:

OAuthException: (#200) Posts where the actor is a page cannot also include a target_id 

But posting /me/feed won't work neither. All solutions I've googled don't work anymore, official documentation didn't help. I got it working when posting as a user (not a page) and with javascript api (required 'share' click action by a user).

Anyone knows the solution for automatic post to a fb page as a page? Spent couple of frustrating days trying to figure it out -_-

Thanks,

A.


回答1:


I've had the same problem. The reason was that I was an admin of more than one page, and I tried to post with the token of another page.




回答2:


Pages cannot post to user's walls (that's why you're getting the OAuthException that says "as a page, you cannot set the target_id"). You'll have to first create an application and get the user's permission (publish_stream) to post to their feed via said app.




回答3:


I assume you have some knowledge of app and how posting work.

1.You have to get Page access token and use this on array.

2.you use this

"/$pageid/feed"

try use this

$facebook->api($pageID . '/feed','POST'

Thanks...



来源:https://stackoverflow.com/questions/9356247/post-to-facebook-page-wall-as-a-page

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!