2012-07-17 2 views
-1

내 게시물을 내 벽에 공유하는 동안 전체 게시물에 링크가 표시되는 반면 공유 된 게시물 제목 및 이미지에만 URL을 표시하려고합니다. 링크 부분을 제외하고는 모두 잘 작동합니다.Facebook 공유 게시물 제한 제목 및 이미지 전용 URL

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

좋습니다.

+0

정확히 무엇을 요구하고 있는지 이해할 수 없습니다. – CBroe

+0

@CBroe 사실, 벽에 공유 포스트가있는 것보다 링크가 제목과 미리보기에만 있지만 내 경우에는 완전한 포스트에 링크되어 있다는 것을 알게 될 것입니다. – Nehrav

+0

@CBroe [link] http://www.facebook.com/HyperArtsTests?sk=app_198144043559967 클릭하여 공유 상자에 나타나는 체크 박스를 확인하십시오. – Nehrav

답변

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']));  
관련 문제