ユーザーのFacebookタイムラインにステータスの更新を投稿しようとしていますが、これを実行しても何も起こりません。
require_once('sdk/src/facebook.php');
$facebook = new Facebook(array(
'appId' => AppInfo::appID(),
'secret' => AppInfo::appSecret(),
'sharedSession' => true,
'trustForwarded' => true,
));
$response = $facebook->api(
'me/news.publishes'
'POST',
array(
'article' => "http://samples.ogp.me/434264856596891"
)
);