Código PHP:
Ver original<?php
require_once('facebook_2013/src/facebook.php');
$app_id = 'xxxx';
$app_secret = 'xxxx';
$token = 'xxxx';
$facebook = new Facebook
(array( 'appId' => $app_id,
'secret' => $app_secret,
'cookie' => false
));
'access_token' => $token,
'message' => 'El mensaje',
'link' => 'http://www.ejemplo.com/',
'picture' =>'http://i2.ytimg.com/vi/B0ESuY-KlEs/default.jpg'
);
$page_id = "123456789"; // el id de la página en FB a publicar
$page_info = $facebook->api("/$page_id?fields=access_token");
$res = $facebook->api('/'.$page_id.'/feed', 'POST', $req);
?>
Prueba así
Saludos