我正在网站上工作,我们要求允许我们的客户在LinkedIn上分享他们的网页
我们已经使用AddThis实现了一个分享按钮,这似乎适用于LinkedIn,但手动共享任何与LinkedIn一起正常运行的页面(通过我们帐户的共享更新功能)似乎并没有按预期工作。登记/>
手动共享链接时,会正确生成指向该页面的链接,但页面的标题和描述性文本(我们正在谈论新闻文章)并未始终填写。
我们似乎大部分时间都在获取404页面的标题和内容,有时只是404页面的标题和目标网页的内容。
还有其他人遇到过这个问题吗?如果是这样,你能告诉我信息的来源和方式吗?
答案 0 :(得分:0)
要预先填充网站的True
,title
等的预览,您需要使用image
标签,例如...
og:
<meta property='og:title' content='Title of the article"/>
<meta property='og:image' content='//media.example.com/ 1234567.jpg"/>
<meta property='og:description' content='Description that will show in the preview"/>
您将这些插入到HTML的<meta property='og:url' content='//www.example.com/URL of the article" />
块中。
来源:LinkedIn Developer Docs: Making Your Website Shareable on LinkedIn。
您可以使用网站URL上的LinkedIn Post Inspector来验证是否正确实施了
。