我很沮丧,因为我花了好几个小时 - 这里还有其他线索,但没有一个解决了我的问题!
我只想在我的网站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图像不够大 - 我想这不应该是一个问题吗?
答案 0 :(得分:4)
看起来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>
答案 1 :(得分:0)
刚才我解决了类似的问题。 显示类似FB的按钮但不起作用。
在我的网页<div id="fb-root"></div>
中,div
位于position: relative;
css属性中。
删除position: relative;
后,它再次有效。