Is it possible to post a message with share button in Graph API. I use SDK-PHP v3 and this code:
$args = array(
\'access_token\' => TOKEN_HERE
ok, I found solution. maybe someone will be interested. to add a link with share button you have to use 'me/links' instead of 'me/feed'.
$attachment = array(
'access_token'=>TOKEN_HERE,
'message'=>'message_here',
'link' => 'http://www.example.com/',
);
$result = $facebook->api(
'me/links',
'post',
$attachment
);