Facebook share title not working
- by sakthi
I have used following code for Facebook share in my website
$attachment = array(
'message' => "myTaste || real restaurant reviews, share your taste on myTaste",
'link' => $review['business']['personal_url'],
'title' => $review['user']['name_display']." has reviewed ".$review['business']['name'],
'description' => $review['business']['review']['review'],
'image'=> "http://dev.mytaste.com.au/images/gui/header/mytaste.gif" );
$facebook->api("/".$usid."/links", "post",$attachment);
But it does not recognize the title attribute,It just shows page title only,any one can suggest me?