O.K. this has been keeping me busy for 2 days now and I'm banging my brains out now. I've posted it on forums, asked friends, googled it extensively and looked on stackoverflow. I'm not the first to post this question but I couldn't find the answer among the responses so that's why I'm creating this new question.
this is what I'm trying to do : - I want to post a message to a user's wall as a Facebook-app in PHP. - I want to do this server-to-server, so without the dialog box and any user-interaction (he could be mowing the lawn at that moment for all I care) - This user has granted permission to my app, these permissions are: 1) manage_pages, 2) publish_stream, 3) read_stream - I'm using the PHP Facebook SDK - this is my code:
/* Facebook */
$facebook = new Facebook(array(
'appId' => FACEBOOK_APP_ID,
'secret' => FACEBOOK_APP_SECRET
));
/* string */
$accessToken = $facebook->getAccessToken();
/* Array<string> */
$postFields = array("message"=>"test2", "access_token"=>$accessToken);
$facebook->api('/{the-id-of-the-facebook-user}/feed','post',$postFields);
this is the issue : I keep getting the following error : (#200) The user hasn't authorized the application to perform this action.
This is a bullshit-message cause the user HAS authorized my app (That user also happens to be me and I checked all the permissions under apps, they're fine).
Any suggestions would be greatly appreciated cause I don't know where to look anymore. I know others posted this question before but the answers weren't satisfying. Thanks a lot in advance.

publish_streamproblem. Make sure you have granted thepublish_streampermission. – qeremy Aug 10 '12 at 9:21publish_streammeans publishing to user's wall and to that user's friends wall [developers.facebook.com/docs/authentication/permissions/]. Are you sure you are posting to a wall of user who's givenpublish_streampermission or to one of his friends? – zysoft Aug 10 '12 at 10:48