I am sorry if this question is a bit of repetition of early questions but I didn't find any relevant answers.
I am building a FB app and I am trying to publish to a friend wall using this code:
$attachment = array(
'access_token' => $facebook->getAccessToken(),
'message' => 'Did a Test Post :',
'name' => "This is the title of my post",
'link' => "http://blogs.canalplan.org.uk/steve/2010/04/28/hitting-a-moving-target/",
'description' => "this is the body of the post with lots of wiffly woffly text in it, lets see if this all works ok!",
'picture'=>"http://blogs.canalplan.org.uk/steve/files/2009/12/13742_1291940983817_1389037839_836473_2130235_n.jpg",
);
100001893238650- this is a friend that give permission to publish on hes wall
$facebook->api('/100001893238650/feed', 'POST', $attachment);
Now, when I am using the 'me' instead of this id it works fine but whenever the id is not 'me' I get the Uncaught OAuthException: (#210) User not visible error.
I get same error using curl.
I am asking for the publish_stream and to be safe the offline_access(I don't think the offline_access is connected, but just to be sure) permissions.
What am I doing wrong? which permission I need more?