修复LinkedIn帖子上的共享图片说明?

时间:2016-10-12 18:38:33

标签: html image linkedin blogs

我工作的公司想要将我们博客文章的链接从公司网站分享到我们公司的LinkedIn。虽然我们喜欢Twitter的方式(嵌入式链接上的大图像),但LinkedIn似乎没有这种能力。因此,对于某些部分,我们选择了一个链接并单独上传图像。

但是,当有人分享图片时,他们会看到以下内容(使用Dropbox作为示例,因为它们似乎也有问题):

enter image description here

我们不喜欢该文件的名称是显示的,并且想知道是否有一种方法,无论是在我们的博客网站上的HTML还是在LinkedIn设置中,默认情况下都会更改为共享的标题,这样用户就不必单击“编辑”按钮让它说出更合适的内容。

任何想法,LinkedIn社区?

2 个答案:

答案 0 :(得分:1)

有一些meta标签可以自定义LinkedIn共享。您可以在帖子中添加以下元标记。因此,您可以自定义标题,说明和图像。

<!-- Title of share -->
<meta property='og:title' content='Title of the page'/>

<!-- Image -->
<meta property='og:image' content='http://yourdomain.com/test.jpg'/>

<!-- Description -->
<meta property='og:description' content='Description of the page'/>

<!-- URL -->
<meta property='og:url' content='http://www.example.com/URL of the article'/>

答案 1 :(得分:1)

使用API​​创建共享时,您可以控制与图像相关的信息(即标题,说明)。

这是通过API调用实现的,如下所示:

发布https://api.linkedin.com/v1/people/~/shares?format=json

{
  "comment": "Check out developer.linkedin.com!",
  "content": {
    "title": "LinkedIn Developers Resources",
    "description": "Leverage LinkedIn's APIs to maximize engagement",
    "submitted-url": "https://developer.linkedin.com",  
    "submitted-image-url": "https://example.com/logo.png"
  },
  "visibility": {
    "code": "anyone"
  }  
}

此处提供官方文档:https://developer.linkedin.com/docs/share-on-linkedin