我有一个由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>
您在元标记中有一个类型o。
<meta property="og:description" content="my-content" /
应该关闭:
<meta property="og:description" content="my-content" />
▲