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);
}
}
?>
