在将帖子分享到我的墙上时,我获得了完整帖子的链接,而我只想显示共享帖子标题和图像的 URL。除链接部分外,一切正常。
$result = $facebook->api('/me/feed/', 'post',
array('name' => $_POST['title'],
'link' => 'http://myurl.com',
'picture' => $_POST['imgPath'],
'caption' => 'post title',
'description' => $_POST['description']));
请建议。