The below code works fine but the issue it posts as the user ( $post_user_id ). I want it to post as the application. Show application name and application icon as display picture on the post. Something similar to the example in https://developers.facebook.com/docs/reference/api/post/ => https://www.facebook.com/platform/posts/10150189643478553
$args = array(
'access_token' => "".$array['accesstoken']."",
'message' => "".$message."",
'link' => "http://www.example.com/",
'from' => "application id",
'to' => "".$post_user_id."",
);
$post_id = $facebook->api("/$post_user_id/feed","post",$args);