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 have a facebook application and i want to post a message from the application directly to the wall by calling a php script from my flex application. Can you please help me out.

function postmessage($appid) {
    $facebook = new Facebook(array(
        'appId' => 'XXX',
        'secret' => 'xxx',
        'cookie' => true
    ));
    $session = $facebook->getSession();
    $attachment = array(
        'message' => 'this is my message',
        'name' => 'This',
        'caption' => 'Caption of the Post',
        'link' => 'apps.facebook.com/tvtreasurehunt/',
        'description' => 'this is a description'
    );
    $result = $facebook->api('/me/feed/', 'post', $attachment);
}
share|improve this question
What exactly is your problem? – Maerlyn Nov 19 '11 at 16:25
I want to post a message using the php sdk. Actually i have a flex application and then i call a webservice in which i want to post a message to the wall of the user. – Prashant Nov 20 '11 at 10:41

1 Answer

The following code creates a post on the user's wall. Prerequisite: you need to have a valid access_token with publish_stream permission.

$context = stream_context_create(array(
  "http" => array(
    "method"    => "POST",
    "content"   => http_build_query(array(
      "access_token"    =>      $access_token,
      "link"            =>      $config["fb_app_url"],
      "name"            =>      "name",
      "description"     =>      "description",
    )),
  ),
));

file_get_contents("https://graph.facebook.com/me/feed", false, $context);

For more detailed information see the official documentation: Post on Facebook Developers.

share|improve this answer
Can you please provide me the entire source code help to get the access_token and even set the permissions. – Prashant Nov 20 '11 at 14:27
It's not that easy, here's the documentation: developers.facebook.com/docs/authentication – Maerlyn Nov 20 '11 at 17:45

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.