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.

Sample code is appreciated, I can't seem to find any simple examples of this online.

share|improve this question
I wrote an article about this recently. You need to get extended_access permission and essentially post as an authenticated user that is an admin of the page. typeoneerror.com/articles/post/… – typeoneerror Jan 19 '11 at 5:49

2 Answers

Using the new Facebook PHP-SDK, it's very easy to accomplish this.

Requirements:

  1. Extended Permissions, depending on your needs
  2. Page ID

Now as I said, depending on your requirements you may need offline_access, manage_pages, but for now this is the simplest straight forward way of doing this:

After downloading the PHP SDK, and in the example.php file:

  • Acquire the publish_stream permission:

    <fb:login-button perms="publish_stream"></fb:login-button>  
    
  • After successful authentication, you post to the page wall the same way you do it for normal user profile (and with the same options too, message, picture, link, name, caption, description, source):

    $page_id = '123456789';
    $feed_array = array(
        'message' => "Hello world!"
    );
    $page_post = $facebook->api("/$page_id/feed","post",$feed_array);
    

Result:
alt text

Please note that this approach requires you being an administrator of the page.

share|improve this answer

in this change the /me/feed/ to your page id, I did't try....Just check

$attachment = array('message' => 'some meesgae',
        'name' => 'This is my demo Facebook application!',
        'caption' => "Caption of the Post",
        'link' => 'mylink.com',
        'description' => 'this is a description',
        'actions' => array(array('name' => 'Get Search', 'link' => 'google.com')) );
    $result = $facebook->api('/me/feed?access_token='.$access_token, 'post', $attachment);
share|improve this answer
Where do you get $access_token from? – NT3RP May 28 '12 at 15:50

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.