我正在尝试通过我的网站在 WhatsApp 上启用链接共享(文本 + 图像)。我已经实现了 OG 标签。
在头上——
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Yuva Registration" />
<meta property="og:description" content="Register to get benefits" />
<meta property="og:site_name" content="Yuva" />
<meta property="og:url" content="http://ad-test.easygov.co.in/PanAdvertisement/"/>
<meta property="og:image" itemProp="image" content="http://ad-test.easygov.co.in/advertisement/test.png"/>
<meta property="og:image:type" content="image/png"/>
在我的身体里——
<link itemprop="thumbnailUrl" href="http://ad-test.easygov.co.in/advertisement/test.png" />
<span itemprop="thumbnail" itemscope itemtype="http://schema.org/ImageObject" >
<link itemprop="url" href="http://ad-test.easygov.co.in/advertisement/test.png" />
</span>
我通过共享调试器验证了我的标签,一切似乎都井井有条,调试器正在获取我的所有标签。
这是 Whatsapp 锚标签 -
<a href="https://web.whatsapp.com/send?text= Please Visit https://easygov.co.in/PanAdvertisement"
rel="nofollow noopener" target="_blank"
className="share-icon"><img src="/img/share-icon.png" style={{height:'36px'}}/>Share via Whatsapp</a>
但在分享时我只收到文字 - 请访问https://easygov.co.in/PanAdvertisement
我无法弄清楚我错过了什么或做错了什么。
谢谢!