I have a site with recipes and also the site has a groups in facebook with several thousands of friends. I want to post new recipes on the group timeline. I can do it with cron every 1 hour for example.
require_once('facebook.php');
$config = array(
'appId' => 'xxx',
'secret' => 'xxx',
);
$facebook = new Facebook($config);
// If not, we'll get an exception, which we handle below.
try {
$ret_obj = $facebook->api('/page_id/feed', 'POST',
array(
'link' => 'www.example.com',
'message' => 'Posting with the PHP SDK!'
));
echo '<pre>Post ID: ' . $ret_obj['id'] . '</pre>';
} catch(FacebookApiException $e) {
echo "error type: ". $e->getType()."<br />";
echo "error mesage: ". $e->getMessage()."<br />";
}
How should I change my script to be able to post on the groups page from cron daemon?
I changed the script little bit and now I have this error: error type: OAuthException error mesage: (#200) The user hasn't authorized the application to perform this action