3

我想在我的网站上添加 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,因为它允许我在未来添加更多功能。

谢谢。

4

1 回答 1

4

您应该在facebook 开发者部分创建您的应用程序,您将被分配应用程序 ID(应用程序 ID),这就是您应该放在那里的内容。

于 2010-05-22T15:00:23.110 回答