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 account created for my newsletter campagin When I send the newsletter, i want to post the message to announce the mail is sent on that facebook post.

Currently i know how to invite people to adding me when they subscribe, but I do not know how to publish some text message on my page's board using php.

Is it possible and how to implemented? Thank you

Using session instead of hardcoding the login name and password for a test page, but nothing appear in my facebook board?

<?php
require_once('plugin/facebook-sdk/src/facebook.php');
$facebook = new Facebook(array(
  'appId'  => 'APP_ID',
  'secret' => 'APP_SECRET',
  'cookie' => true,
));

$session = $facebook->getUser();

if($session) {
    //post to wall/stream function
        try {
            $result = $facebook->api(
                '/me/feed',
                'post',
                array(
                    'message' => 'testmessage'
                    )
                );
        } catch (FacebookApiException $e) {
            echo 'Error: ' . print_r($e, true);
        }

} 
?>
share|improve this question
3  
Probably best to check the documentation first: developers.facebook.com/?ref=pf – Dan Mar 2 '12 at 14:44
I have googled it , does it mean i have to get a token ? but i am not building any application – user782104 Mar 2 '12 at 15:02

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.