Linkedin:共享URL摘要未出现

时间:2018-07-05 10:52:38

标签: share linkedin social-networking opengraph

我不确定这是新行为还是根本不起作用。 因此,我正在使用LinkedIn自定义URL功能,您可以在here上进行查找。 URL看起来像这样:

https://www.linkedin.com/shareArticle?mini=true&url=http://developer.linkedin.com&title=LinkedIn%20Developer%20Network&summary=My%20favorite%20developer%20program&source=LinkedIn

一旦我共享URL,提供的summary就不会显示在帖子预览中:

LinkedIn Screenshot containing a shared post sample

因此,我尝试使用其他服务(例如Youtube,Reddit等),并且所有帖子都包括提供的摘要。

不幸的是,由于我的网站是在公司环境中运行的,因此我无法提供我在网站上使用的开放式标签,并且不确定目前是否可以提供这些摘要。

但是,运行linkedin的Post Inspector表明它可以毫无问题地检测到我的摘要:

PostInspector Output 如果有人想知道的话,值用德语表示...

因此,我的快速而简单的问题(也可能会在评论中得到回答)是

linkedin改变了他们的立场吗? 是否还有其他一些未记录的属性,自定义的URL都没有包含youtube和我,因此摘要未显示? 是否有来自Linkedin开发人员的帖子注意到此更改? 一直都是这样吗,还是只是暂时的事情?

2 个答案:

答案 0 :(得分:1)

人们遇到的主要问题:您不能同时显示 两者 图像和描述。您只能使用一个。指示图像的OG标签意味着您的描述将不会显示。来源:Arguing with LinkedIn Support for 2 Weeks

LinkedIn现在仅在其共享内容中支持一个参数:

https://www.linkedin.com/sharing/share-offsite/?url={url}

来源: Microsoft LinkedIn Share URL Documentation

如果要指定标题和摘要,则需要og tags,但这是LinkedIn与URL关联的内容,并且它不会填充在消息正文中。

否则,这对我有用:

https://www.linkedin.com/sharing/share-offsite/?url=http://www.wikipedia.org/

工作正常:

如果您对定期维护的GitHub项目感兴趣,可以跟踪该项目,而不必这样做,请查看! Social Share URLs

Social Share URLs Image

答案 1 :(得分:0)

LinkedIn现在使用“打开图”标签显示预览。

下面是必须存在的og:tags及其正确格式:

<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" />

并且共享URL更改为:

https://www.linkedin.com/sharing/share-offsite/?url=your_encoded_url

请参阅此Making Your Website Shareable on LinkedIn