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'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

share|improve this question
I'm not sure how you constructed the login link, but 1) try $facebook->getLoginUrl(array("req_perms" => "publish_stream")); and 2) make sure the PAGE_ID is valid – ifaour Mar 15 '11 at 19:51
thanks ifaour - I'm a little confused. The website does not require users to login via facebook - the message is posted on the fan page wall on behalf of the app and not any user. So why do I need the login URL. The app has been granted permission to post on the fan page wall via the link I posted on top - Thanks – Gublooo Mar 16 '11 at 6:14

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.