For some reason the following is not working.
I have the publish_stream permission. What could be wrong?
function publishToFacebook($app_id, $app_secret, $fb_id) {
require_once '../facebook-php-sdk-dafef11/src/facebook.php';
$facebook = new Facebook(array(appId => $app_id,
secret => $app_secret,
cookie => true));
if(is_null($facebook)) {
// some code;
die('bad');
}
else {
// post to fb
try {
$post_id = $facebook->api('/' . $fb_id . '/feed/', 'post', array(
'message' => 'my message',
'link' => 'http://example.com',
'picture' => 'http://example.com/images/logo.jpg',
'caption' => 'a caption'
));
return $post_id;
}
catch (FacebookApiException $e) {
echo "Error:" . print_r($e, true);
}
}
}
