2

您好我正在使用以下代碼在我的導軌應用程序中彈出Facebook應用程序請求對話框。錯誤雖然在導軌應用程序中彈出Facebook應用程序請求對話框

$('#app_request').live("click", function() { 
    FB.ui({ 
     method: 'apprequests', 
     message: 'You should learn more about this awesome game.', 
     data: 'tracking information for the user' 
     }); 
    }); 

但我得到的錯誤爲FB沒有定義 我應該怎麼做來糾正它。我是新來的鐵路發展& FB應用程序。 請指導我。 謝謝。

回答

1

您需要加載並初始化了Facebook的JavaScript SDK - for example

<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> 
相關問題