I have stored a Facebook user ID and a Facebook friend ID. How can I publish to the user's wall without logging into Facebook?
I have used the old Facebook API that has UID and target_id fields like this:
$param = array(
'method' => 'stream.publish',
'callback' => '',
'message' => $row[message],
'attachment' => json_encode($attachment),
'target_id' => $row[friends_id],
'uid' => $row[sender_id],
'privacy' => ''
);
$result = $facebook->api($param);
Is this possible in new facebook PHP API?
$attachment = array('message' => $wall);
$facebook->api("/$target/feed/",'post', $attachment);
The application has wall posting permissions.

I's - lack of that pakes the post look low quality, and attracts downvotes. – Pekka 웃 Aug 25 '11 at 6:40