-1

投稿を自分の壁に共有しているときに、投稿全体のリンクを取得していますが、共有された投稿のタイトルと画像のみに URL を表示したいと考えています。リンク部分を除いてすべて正常に動作しています。

$result = $facebook->api('/me/feed/', 'post',
    array('name' => $_POST['title'], 
          'link' => 'http://myurl.com', 
          'picture' => $_POST['imgPath'], 
          'caption' => 'post title', 
          'description' => $_POST['description']));     

提案してください。

4

1 に答える 1

0
Try by removing '/' after feed ..
$result = $facebook->api('/me/feed', 'post',
    array('name' => $_POST['title'], 
          'link' => 'http://myurl.com', 
          'picture' => $_POST['imgPath'], 
          'caption' => 'post title', 
          'description' => $_POST['description']));    
or you can use userid instead of me..
$user=$facebook->getUser();
$result = $facebook->api('/$user/feed', 'post',
    array('name' => $_POST['title'], 
          'link' => 'http://myurl.com', 
          'picture' => $_POST['imgPath'], 
          'caption' => 'post title', 
          'description' => $_POST['description']));    
于 2012-07-18T07:38:13.010 に答える