以下是我用来在 Facebook 上分享帖子的代码。一切正常,但有时在某些帖子上没有显示缩略图。
<?php
$title=urlencode('Facebook Share Platform');
$image=urlencode('imagepath');
$summary=urlencode('Check This Out');
$url=urlencode('http://apps.facebook.com/yourapplication');
?>
window.open('http://www.facebook.com/sharer.php?s=100&p[title]=<?php echo $title; ?>&p[summary]=<?php echo $summary; ?>&p[url]=<?php echo $url; ?>&p[images][0]=<?php echo $imagepath; ?>', 'sharer', 'toolbar=0,status=0,width=626,height=436');
我已经检查了 URL 和我能找到的所有内容,但无法找出问题所在。