Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using php-sdk and everything goes fine when i'm publishing to fan page only the text message, it appears as fanpage post... when i'm posting link with the same function it appears as user post ... why?

try {
      $res = $facebook->api('/'.$PAGE_ID.'/feed', 'POST',                   
                  array(
                        'access_token' => $PAGE_ACCESS_TOKEN
                        ,'message' => $message                        
                        ,'link' => $link
                      ) 
            );                       } catch (FacebookApiException $e) 
     {
        echo "e:".$e->getMessage();
        var_dump($res);
     }
share|improve this question

1 Answer

If you want to post to the page as the page itself, you must use the access token for the page instead of the user.

Go an API call to /me/accounts and you will see a list of pages / apps the user has access to. Each entry will have a access_token providing the user has accepted 'manage_pages` permission.

Using this access_token in your API call will let you publish as the page.

share|improve this answer
Its working! Thanks. And maybe You know how to remove the application name from the post? "page name" published by "app name" ? – user1545625 Jul 23 '12 at 14:18
You won't be able to remove the app name from the post. – Niraj Shah Jul 23 '12 at 14:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.