My Facebook App using Graph API posting a post to friend wall of the user. But the post on friend wall shows "post from my app". I have to show the user name instead of my app name.
My Code is
$Facebook = new FB();
$result = $Facebook->api('/1033301390979876/feed', 'POST', array(
'access_token' => $access_token,
'message' => 'Hey I m Using Ylla... Will U???',
// 'from' => array('name' => 'Pandi Selvam' , 'id' => '1033371111983124' ),
//'to' => array('name' => 'Mahesh Ramasamy' , 'id' => '1033301390979876' )
));
Here the to and from parameter is not working. I can post without to and from parameter.