2014-02-13 83 views
0

雖然我對編程或API並不陌生,但我對Facebook API頗爲陌生。這個插件使用了一些Facebook代碼,而且顯然不起作用。Facebook註冊 - 如何使它工作?

我的註冊頁面上有以下代碼。但是,「使用Facebook註冊」不可點擊。這是螢火蟲顯示:<fb:login-button scope="email,user_about_me,user_location"></fb:login-button>

<div id="fb-root"></div> 
      <script> 
      window.fbAsyncInit = function() { 
       FB.init({ 
       appId : '<?php echo $ap_info['appId']; ?>', 
       status : true, // check login status 
       cookie : <?php echo $ap_info['cookie']; ?>, // enable cookies to allow the server to access the session 
       xfbml : true, // parse XFBML 
       oauth : true //enables OAuth 2.0 
       }); 

       FB.Event.subscribe('auth.login', function(response) { 
       window.location.reload(); 
      }); 
      FB.Event.subscribe('auth.logout', function(response) { 
       window.location.reload(); 
      }); 
      }; 
      (function() { 
       var e = document.createElement('script'); 
       e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js'; 
       e.async = true; 
       document.getElementById('fb-root').appendChild(e); 
      }()); 
      </script> 

所有類似的appid變量,餅乾等有正確的價值觀。我通過它們進行調試。

回答