我在我的页面中添加了标签,但在分享
时却没有提取图像我想知道如何在使用
进行链接时自定义图像http://www.linkedin.com/shareArticle?mini=true'+'& url ='+ articleUrl +'& title ='+ articleTitle +'& summary ='+ articleSummary +'& source ='+ articleSource
请让我知道在分享“
”时如何获取图片答案 0 :(得分:1)
在浏览器上使用它来处理图像。
在网址中,您希望分享该网页所需的图片,然后只有图片会显示在共享标签上
您希望分享的网址必须在网上直播。
从给定网址提取图片。请尝试使用一些有图片标记的有效网址
答案 1 :(得分:0)
使用html页面上的元标记来指示抓取工具如何呈现链接,还有一个图像属性:
<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