共享网址链接不会在Facebook上显示缩略图

问题描述 投票:17回答:4

我有一些示例网址,提供Facebook共享。但是网址页面中的图片没有显示在Facebook评论框中。我已经插入了这样的Meta标签

<meta property="fb:app_id" content="xxxx"/>
<meta property="og:site_name" content="xxxx"/>
<meta property="og:title" content="xxxx" />
<meta property="og:description" content="xxx" />
<meta property="og:type" content="xxx:photo">
<meta property="og:url" content="http://www.example.com/content/xxx"/>
<meta property="og:image" content="http://www.example.com/images/xxx.png"/>

*我的图像是1000 * 1000像素(宽*高)。

有什么想法解决?

facebook image opengraph sharing
4个回答
48
投票

您的元标记应如下所示:

<meta property="og:image" content="http://ia.media-imdb.com/rock.jpg"/>

它必须放在您想要分享的页面上(这在您的问题中不明确)。

如果您在图像(或元标记)存在之前共享了页面,那么Facebook可能在其“内存”中没有图像的页面。在这种情况下,只需在调试工具http://developers.facebook.com/tools/debug中输入页面的URL即可。之后,下次共享页面时应该存在图像。


11
投票

问题在于facebook缓存,解决方案是通过转到链接来刷新facebook缓存。 https://developers.facebook.com/tools/debug/og/object/

然后按“获取新的废料信息”按钮。

希望能帮助到你


2
投票

我发现使用og:image指定的图像必须实际存在于图像标记内的HTML页面中。

只有在我为图像添加了图像标签后,才会出现缩略图。它被评论出来了。但工作。


0
投票

我的网站也面临同样的问题。

使用Facebook调试工具毫无帮助。获取新数据但不获取IMAGE CACHE。

我强迫Facebook通过添加www来清除IMAGE CACHE。进入图片网址。在你的情况下删除www。并配置Web服务器重定向。

 add/remove www. in image url should solve the problem
© www.soinside.com 2019 - 2024. All rights reserved.