我想在我的网站上添加 facebook 的“Like”按钮,但 JavaScript API 要求输入“your app id”
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: 'your app id', status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
我应该放什么?
我可以使用他们提供的 iframe 代码,但更喜欢使用 XFBML,因为它允许我在未来添加更多功能。
谢谢。