Facebook分享按钮未显示本地主机上og标签的图像等

时间:2019-05-16 12:41:39

标签: javascript html facebook

我的Facebook社交分享按钮有问题。在弹出窗口上单击共享按钮后,它不会显示og:image标签中提供的图像,也不会显示og:title和og:description标签中的标题和描述。这是我的项目在localhost:3000上提供的问题。

我还尝试从Facebook网站(https://developers.facebook.com/docs/plugins/share-button/)复制和粘贴代码,并仅在浏览器中运行单独的index.html,但即使这样也无法按预期工作(仅显示网站的网址)< / p>

那么即使使用官方代码也有什么问题,我该如何解决,所以我的图像,描述和标题会显示在弹出窗口中?

这是Facebook Doc中的代码

<html>
<head>
  <title>Your Website Title</title>
    <!-- You can use Open Graph tags to customize link previews.
    Learn more: https://developers.facebook.com/docs/sharing/webmasters -->
  <meta property="og:url"           content="https://google.pl" />
  <meta property="og:type"          content="website" />
  <meta property="og:title"         content="Your Website Title" />
  <meta property="og:description"   content="Your description" />
  <meta property="og:image"         content="http://javascript.info/article/call-apply-decorators/decorator-makecaching-wrapper.png" />
</head>
<body>

  <!-- Load Facebook SDK for JavaScript -->
  <div id="fb-root"></div>
  <script>(function(d, s, id) {
    var js, fjs = d.getElementsByTagName(s)[0];
    if (d.getElementById(id)) return;
    js = d.createElement(s); js.id = id;
    js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.0";
    fjs.parentNode.insertBefore(js, fjs);
  }(document, 'script', 'facebook-jssdk'));</script>

  <!-- Your share button code -->
  <div class="fb-share-button" 
    data-href="https://google.pl" 
    data-layout="button_count">
  </div>

</body>
</html>

2 个答案:

答案 0 :(得分:0)

  

这是我在localhost:3000上服务的项目的问题

OG标签无法在localhost上运行,Facebook需要能够访问URL。将您的项目放在公共Web服务器上以测试OG标签。

答案 1 :(得分:0)

  1. 数据参考必须与 og:url
  2. 相同
  3. 根据我的经验,我可以告诉og:image应该为 .jpg ,否则会出现图像错误
  4. 正如@luschn所说,您的图片当然应该在网络上,而不是localhost
  5. 我最近在fb共享按钮方面遇到了很多问题,所以我更喜欢使用fb share link并使用一些CSS来自定义元素,使其看起来像按钮或其他内容