gpt4 book ai didi

facebook-like - 为什么没有出现类似fb的按钮?

转载 作者:行者123 更新时间:2023-12-04 12:35:19 27 4
gpt4 key购买 nike

我很沮丧,因为我花了几个小时来解决这个问题 - SO 上还有其他线程,但没有一个解决了我的问题!

我只是想在我的网站 www.posti.sh 上实现类似 fb 的按钮 - 我想知道为什么它不起作用?

这是我使用的代码,根据 https://developers.facebook.com/docs/reference/plugins/like/分步教程:

<div id="fb-root"></div> (directly after the opening body tag)


<div class="fb-like" data-href="http://www.posti.sh" data-send="true" data-width="450" data-show-faces="true"></div>

我希望它在哪里。

我还在头部添加了相应的元标记。

任何人都知道为什么它不起作用?

谢谢!!

丹尼斯

更新 1

我用过fb调试工具 https://developers.facebook.com/tools/debug它只说 og 图像不够大 - 我想这应该不是问题吗?

最佳答案

看起来 HTML5 Like Button 代码中的第 1 步缺少实际添加 Javascript SDK 的部分.代码应该是:

<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR_APP_ID', // App ID
channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});

// Additional initialization code here
};

// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>

关于facebook-like - 为什么没有出现类似fb的按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10660414/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com