我的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>
答案 0 :(得分:0)
这是我在localhost:3000上服务的项目的问题
OG标签无法在localhost上运行,Facebook需要能够访问URL。将您的项目放在公共Web服务器上以测试OG标签。
答案 1 :(得分:0)