1

私は試してみて、すべてを読んだだけですが、どういうわけか私はまだこの問題を管理できませんでした. 誰も手がかりを持っていますか?

詳細については、こちらをご覧ください: http://i1145.photobucket.com/albums/o501/King_Coatie/notworking.gif

4

1 に答える 1

0

次に示すように、JavascriptSDKをロードして初期化してみてください。

<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
  appId      : 'YOUR_APP_ID', // App ID from the App Dashboard
  channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File for x-domain communication
  status     : true, // check the login status upon init?
  cookie     : true, // set sessions cookies to allow your server to access the session?
  xfbml      : true  // parse XFBML tags on this page?
});

// Additional initialization code such as adding Event Listeners goes here

};

  // Load the SDK's source Asynchronously
(function(d, debug){
 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" + (debug ? "/debug" : "") + ".js";
 ref.parentNode.insertBefore(js, ref);
 }(document, /*debug*/ false));
</script>

http://developers.facebook.com/docs/reference/javascript/

処理しているアプリを認識するために、FBオブジェクトにappIDを提供する必要があります。

于 2012-11-12T11:28:46.387 に答える