1

我在我的页面中添加了标签,但在 LinkedIn 共享时它没有获取图像。

我想知道如何在使用 LinkedIn 共享时自定义图像。

http://www.linkedin.com/shareArticle?mini=true '+'&url='+articleUrl+'&title='+articleTitle+ '&summary='+articleSummary+'&source='+articleSource

请让我知道在 LinkedIn 上共享时如何获取图像。

4

2 回答 2

1

http://www.linkedin.com/cws/share?token&isFramed=false&url=http%3A%2F%2Fwpsites.net%2Fweb-design%2Fstyle-jetpacks-social-sharing-sharedaddy-buttons%2F

在浏览器上使用它与图像一起工作。

在您希望共享该页面所需图像的 url 中,然后只有图像将显示在共享选项卡上

您想分享的 URL 必须在网上直播。

从给定的 URL 自动获取图像。请尝试一些具有图像标签的有效网址

于 2013-11-21T12:19:50.390 回答
0

使用 html 页面上的元标记来指示爬虫如何呈现链接,还有一个 image 属性:

<html prefix="og: http://ogp.me/ns#">
<head>
  <meta property="og:title" content="My Shared Article Title" />
  <meta property="og:description" content="Description of shared article" />
  <meta property="og:url" content="http://example.com/my_article.html" />
  <meta property="og:image" content="http://example.com/foo.jpg" />
</head>
<body>
   …
</body>
</html>

来源:https ://developer.linkedin.com/docs/share-on-linkedin#methods

于 2017-10-27T21:01:54.473 回答