I'm using php-sdk and everything goes fine when i'm publishing to fan page only the text message, it appears as fanpage post... when i'm posting link with the same function it appears as user post ... why?
try {
$res = $facebook->api('/'.$PAGE_ID.'/feed', 'POST',
array(
'access_token' => $PAGE_ACCESS_TOKEN
,'message' => $message
,'link' => $link
)
); } catch (FacebookApiException $e)
{
echo "e:".$e->getMessage();
var_dump($res);
}