LinkedInでURLを共有すると、そのページの3つの画像が表示されます。会社のURLを投稿に貼り付けるときに、投稿者に正しい3つの画像を表示するにはどうすればよいですか?
オープングラフメタタグを使用してみましたが、3つの画像のいずれかを指定することしかできません。
HTMLページの<meta>
でOpen Graph標準の<head>
タグを使用する必要があります。そのようです:
<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