I had made a facebook tab which post on user's friends wall (feed).
Using following code:
$facebook->api
(
'/'.$sendTo.'/feed/',
'post',
array('access_token' => $facebook->access_token,
'message' => ''.$send_service ,
'name' => 'She\'s got ****\'s Skin!',
'description' => ''.$nam1.' has nominated you to be a Pond\'s girl :) Do return the favor :) ',
'picture' => 'http://www.mydomain.com/fb_tabs/ponds/rec/images/ponds.png',
'link' => 'https://www.facebook.com/mypage/app_[app_id]',
'auto_publish' => false,
'target_id' => '$tag'
)
It was showing the post as I wanted. Here is the example: View Images
Please ignore the blue box in the image.
But for the last two days, it is commming like this: View Image
Can anyone please let me know what I am doing wrong.