由GitHub托管的网站链接的缩略图未显示在WhatsApp上

问题描述 投票:2回答:1

我有一个由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>
html html5
1个回答
0
投票

您在元标记中有一个类型o。

<meta property="og:description" content="my-content" /

应该关闭:

<meta property="og:description" content="my-content" />
                                                      ▲
© www.soinside.com 2019 - 2024. All rights reserved.