1

我正在在linkedin 上实现帖子共享,并且我想在帖子被共享时将 og:image 的 url 显示在linkedin 上。但即使我已将正确的 url 添加到 og:image 元标记。分享帖子后,它既没有出现在分享对话中,也没有出现在linkedin上。

这是我用来在linkedin上分享我的帖子的网址:

https://www.linkedin.com/shareArticle?mini=true&url=http://my_website.com:9000/post/40420&title=Test&summary=Description&source=MyWebsite
4

4 回答 4

4

我昨晚也有同样的问题。花了几个小时研究解决方案,但无济于事。最后我就这个问题联系了LinkedIn,他们立即回复了。他们的开发团队实施了一个名为“Post Inspector”的新工具,可以让您优化内容共享。从字面上看,这在短短几分钟内就真正奏效了。

您所要做的就是输入您的 URL,他们会完成所有繁忙的工作,即验证图像、作者、标题、描述、发布日期等属性的正确代码。他们不仅会验证,还会告诉您要使用什么代码包括,缺少什么以及如何修复它。

这是使用 Post Inspector 的网站:

https://www.linkedin.com/post-inspector/

于 2018-08-11T13:29:48.047 回答
3

LinkedIn 对共享有此要求(但要小心,因为 LinkedIn 网页上的引号看起来不对 - ' 与 " 匹配)

以下是必须存在的 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

您可以在此处找到更多详细信息:https ://www.linkedin.com/help/linkedin/answer/46687/making-your-website-shareable-on-linkedin?lang=en

于 2017-06-19T17:04:07.633 回答
0

我花了1个小时才弄清楚。

将图像标签放在 <head>.

<head>
<meta
    name="image"
    property="og:image"
    content="https://2d-array-rotation.com/static/images/2d_array_rotation.jpg"
>

有时软件工程师会使事情复杂化。

于 2020-05-19T14:58:46.473 回答
-2
<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" />
于 2021-02-11T10:33:33.583 回答