I have created a facebook application for sending messages.I am posting some content and image to my wall using php facebook feed code.Normally when i post something on my wall it will visible on my friends news feed.But my wall post is not visible on my friends news feed.The code for posting wall is
$AccessToken = $this->facebook->getAccessToken();
$attachment = array(
'access_token' => $AccessToken,
'message' => "$Msg",
'name' => 'some content',
'link' => $link,
'picture' => "$ShareImage",
'description' => '',
'caption'=>'',
'properties' => array (
'Send one to a friend now:' => array (
'text' => 'Facebook App ',
'href' => 'http://apps.facebook.com/appname/'
),
'Become a fan:' => array (
'text' => 'Page Name',
'href' => 'http://www.Facebook.com/page/'
)
);
$send = $this->facebook->api("/".$fbid."/feed", 'POST', $attachment);
Is this because of any permission missing...?