我不能让这个工作。我正在尝试展示like this的内容(请参阅“发送到许多”部分中的图像)。我收到消息“发生错误。请稍后再试。”
代码:
window.fbAsyncInit = function() {
FB.ui({title: 'title', display: 'iframe',
method: 'apprequests', message: 'check this out.'
});
}
EDIT1: 弹出窗口显示,但在其中没有朋友列表,但上面的消息。
EDIT2: 当然,我的应用程序会在首次启动时请求用户朋友列表的权限。
答案 0 :(得分:0)
我已经测试了你的代码,我得到了所有用户的对话框加载。
我建议您检查您的应用程序ID以确保其正确无误。
以下是我正在使用的代码:
//run the script code to get the facebook javascript sdk
(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);
}());
//run when sychronisation of facebook javascript sdk is finished
window.fbAsyncInit = function(){
//initialise the application
FB.init({appId: '<?=APPLICATION_ID?>', status: true, cookie: true, xfbml: true, oauth: true});
FB.ui({title: 'title', display: 'iframe', method: 'apprequests', message: 'check this out.'
});
};
答案 1 :(得分:0)
您应该使用函数getLoginStatus,以确保FB.init
函数已完成加载。
我这样解决了同样的问题:
请注意我正在使用jQuery
<script type="text/javascript">
$(document).ready(function () {
FB.init({ appId: 'APP_ID', status: true, cookie: true, xfbml: true, oauth: true });
FB.getLoginStatus(function (response) {
FB.ui({ title: 'Invite friends', display: 'iframe', method: 'apprequests', message: 'check this out.' });
});
});
</script>
<div id="fb-root"></div>