3

我刚刚注意到 Facebook 上的一个共享链接,其预览中的图像未包含在页面本身(至少不可见)。所以我想知道 - 当使用 HTML 代码共享链接时,有没有办法指定可以在缩略图/预览中显示哪些图像?

我能想到的唯一方法是在页面上有一个可以在预览中使用的 0px 图像。这是通常的做法吗?

4

1 回答 1

5

这可以使用 facebook 开放图元标记来实现: http: //swarminglabs.com/facebook-open-graph-meta-tags/

<meta property="og:title" content="Awesome, Inc. – We're even more awesome.">
<meta property="og:description" content="Awesome's mission is to take cool to a whole new level.">
<meta property="og:image" content="http://YOURWEBSITE.com/YOURIMAGE.png">
<meta property="og:image:secure_url" content="https://YOURWEBSITE.com/YOURIMAGE.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1500">
<meta property="og:image:height" content="1500">

利用og:image元标记将图像更改为您想要的。

于 2013-10-24T13:21:13.430 回答