以下是我用来在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');
我已检查过网址和我能做的所有事情,但无法解决问题。
答案 0 :(得分:2)
您的图片至少是50x50,宽高比是否为3:1或更低? 你还没有给出足够的信息来解决你的问题,所以我只是根据我看到的最常见的问题进行猜测
{编辑:} 3:1图像比率要求记录为here,似乎是OP的问题