我正在处理在 facebook 上分享链接的任务。但我想显示我自己的静态图像(独立于 url)。在 google 和 facebook 的帮助下,我知道我必须在 sharer.php 的图像参数中传递图像路径(我想显示)。但是,它仍然显示与该站点相关的图像。我不知道我的错误在哪里。如果有人知道答案,请解释或建议我从一开始就可以理解的链接。谢谢你。这是我的代码。
<?php
$title = urlencode("How to Create a Custom Facebook Share Button with a Custom Counter");
$url = urlencode("http://www.daddydesign.com/wordpress/how-to-create-a-custom-facebook-share-button-with-a-custom-counter/");
$summary = urlencode("Learn how to create a custom Facebook 'Share' button, complete with a custom counter, for your website!");
$image = urlencode("http://www.daddydesign.com/ClientsTemp/Tutorials/custom-iframe-share-button/images/thumbnail.jpg");
?>
<html>
<a id="button" onClick="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 $image; ?>', 'sharer', 'toolbar=0,status=0,width=550,height=400');" target="_parent" href="javascript: void(0)">
Click to Share
</a>
</html>