2

我正在处理在 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&amp;p[title]=<?php echo $title; ?>&amp;p[summary]=<?php echo $summary; ?>&amp;p[url]=<?php echo $url; ?>&amp;&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>  
4

1 回答 1

0

您的图像http://www.daddydesign.com/ClientsTemp/Tutorials/custom-iframe-share-button/images/thumbnail.jpg是问题所在 - 它实际上不是图像,而是将您带到常规网页。

您需要设置适合facebook 尺寸 要求的特定图像,最小尺寸为 200x200 像素。

于 2015-08-29T12:17:13.143 回答