I'm trying to post a message on the wall of facebook fan page that I created from my php based website.
I created the fan page and then gave permissions to my app to be able to publish on the wall of the fan page
http://www.facebook.com/connect/prompt_permissions.php?api_key=API_KEY&v=1.0&next=http://www.facebook.com/connect/login_success.html?xxRESULTTOKENxx&display=page&ext_perm=publish_stream&enable_profile_selector=1&profile_selector_ids=FAN_PAGE_ID
I also added the App to my page.
Now this is the code that I am executing to post a message on the page wall
//POST TO FACEBOOK
$facebook = new Facebook(array(
'appId' => 'APP_ID',
'secret' => 'APP_SECRET',
'cookie' => true,
));
$session = $facebook->getSession();
try {
$message = 'Check out the new song ';
$facebook->api('/PAGE_ID/feed','POST',
array('message'=>$message,
'link'=>'http://www.example/com/video/play/video_id/111',
'picture'=>'http://www.example/com/snapshots/111.jpg'
));
} catch (FacebookApiException $e) {
Zend_Registry::get('logger')->err('Unable to post on facebook: ' . $e->getMessage());
}
And I keep getting this error - (#210) User not visible
I did google around but wasnt able to resolve this. Any help will be appreciated Thanks in advance
$facebook->getLoginUrl(array("req_perms" => "publish_stream"));and 2) make sure thePAGE_IDis valid – ifaour Mar 15 '11 at 19:51