在将内容共享到社交网络时如何更改图像?

时间:2018-07-11 09:19:16

标签: javascript jquery html

我正在与社交网络共享一个博客,同时共享它是在选择随机图像而不是实际图像。 我正在使用的共享URL是:

<div class="share-bar-link icon-share-facebook" data-share-href="https://www.facebook.com/sharer/sharer.php?u=URL_TO_SHARE?cid=share_fb"></div>

例如,在下图中(我想将该博客共享给任何社交网站) picture1

但是它所拍摄的图像为(拍摄错误的照片) picture2

1 个答案:

答案 0 :(得分:-1)

为此,您必须有权访问博客文章的代码。在头部,有一些元标记,它们定义了您在不同站点上共享内容的方式。它被称为OG标签,也可以通过一些扩展来完成 这是元标记更改的简单示例。

<meta property=“og:image” content=“http://example.com/example.jpg” />

<meta property="og:image:width” content="180" />

<meta property="og:image:height” content="110" />

有关更多信息,请访问此链接

https://yourblogworks.com/social-share-image/