嗨我正在使用以下代码在我的rails应用程序中弹出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应用程序。 请指导我。 谢谢。
答案 0 :(得分: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>