使用Cusom URL将帖子分享到linkedin并指定图片

时间:2016-08-02 01:27:56

标签: wordpress linkedin facebook-opengraph

我可以使用他们的自定义网址API成功地向LinkedIn分享帖子:

https://developer.linkedin.com/docs/share-on-linkedin

我可以指定标题,摘要等,但不能指定图片。 LinkedIn会自动通过链接页面中的 og:image 标记抓取图像。

og:图像通常高于200x200像素,但LinkedIn正在将图像裁剪(不调整大小)到大约180 x 110。

Wordpress通常使用512x512站点图标,许多插件现在都会拾取并默认添加为og:image图标。 (即JetPack)

如何在不向我的网站/网页添加非常小的[非方形] og:图像的情况下解决此问题?

LinkedIn Share Post function

1 个答案:

答案 0 :(得分:1)

要设置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 Developer Docs: Making Your Website Shareable on LinkedIn

以下是对我有用的示例: