我有一个由GitHub托管的网站,我希望我在共享该网站的链接的缩略图在发送时显示。我在网上找到了有关共享链接和显示缩略图的资源,但是我尝试过的解决方案都没有。
下面是我尝试使用的示例:
<head>
<meta property="og:title" content="my-title" />
<meta property="og:description" content="my-content" /
<meta property="og:url" content="https://my-website/path/" />
<meta property="og:image" itemprop="image" content="https://my-website/path/images/thumbnail.png" />
<meta property="og:type" content="website" />
</head>
<body>
<span itemprop="image" itemscope itemtype="image/png">
<link itemprop="url" href="https://my-website/path/images/Thumbnail.png">
</span>
</body>
答案 0 :(得分:0)
您在meta标签中有一个type-o。
<meta property="og:description" content="my-content" /
应关闭:
<meta property="og:description" content="my-content" />
▲