Linkedin共享网页未显示摘要

时间:2019-05-30 06:44:44

标签: share linkedin linkedin-api open-graph-protocol

近四年来,我们一直在使用

与LinkedIn共享我们的网站页面和文章。
  

https://www.linkedin.com/shareArticle?mini=true&url=https://example.com/page1/

直到最近,共享块都将显示图像,标题和摘要。就像在Facebook上一样。但是现在,我们发现该摘要未显示。我知道许多人在这里也提出了同样的担忧。我在该论坛上看到的一个解决方案是切换为强制访问者登录我们的LinkedIn应用程序并通过REST API发布状态。我的问题是,这真的必要吗?我们的网站没有登录功能,强迫人们登录LinkedIn应用程序只是为了显示描述,该描述已经是页面上og标签的一部分。由于有很多人提出来,LinkedIn肯定可以对这个问题做出回应。

2 个答案:

答案 0 :(得分:0)

您可以使用Post Inspector(https://www.linkedin.com/post-inspector/)预览如何在LinkedIn上共享您的帖子。

或者,您可以使用共享插件(https://docs.microsoft.com/en-us/linkedin/consumer/integrations/self-serve/plugins/share-plugin)添加小部件,以使用户可以轻松地在LinkedIn上共享内容。

答案 1 :(得分:0)

只需快速浏览 Official LinkedIn "Making Your Website Shareable on LinkedIn" Documentation 。我将用粗体显示感兴趣的区域:

如果您是网站的开发者,则需要确保源代码符合开放图谱协议(OGP)和特定于LinkedIn的某些图像要求 .... < / p>

下面是必须存在的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"/>
<meta property='og:url' content='//www.example.com/URL of the article" />

还有要求...

这是特定于LinkedIn共享模块的图像要求:

  • 最大文件大小:5 MB
  • 最小图像尺寸:1200(w)x 627(h)像素
  • 推荐比例:1.91:1

因此,如果您要确保图像在LinkedIn共享功能中正确显示,请确保您的网页具有以下内容...

<html>
<head>
<meta property="og:image" content="someweburl.jpg" />
</head>
...
</html>

希望这会有所帮助!