I used following to post on my own wall.
$result = $app->facebook->api('/me/feed/',
'post',
$attachment);
which worked nicely. Now I need to post to my friend's wall. So I used,
$result = $app->facebook->api('/'.$rid.'/feed/',
'post',
$attachment);
This, though is not working. Any extra permission or something?