0

ユーザーの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"
 )
);
4

1 に答える 1

0

"news.publishes" を "feed" に置き換えてみてください。コードは次のようになります。

$response = $facebook->api(
 'me/feed'
 'POST',
 array(
  'article' => "http://samples.ogp.me/434264856596891"
 )
);
于 2013-02-13T15:38:33.093 に答える