我正在使用JavaScript SDK,文档说我可以调用一个方法来创建一个对话框,允许用户选择并邀请多个朋友加入我的应用。这是我正在使用的代码:
FB.ui(
{
method: 'apprequests',
message: 'Invite your friends to use this app'
}, function(response)
{
alert(response);
});
此代码不起作用。运行时会产生错误:http://connect.facebook.net/en_US/all.js的第18行上的“错误:c为空”。我做错了什么?
答案 0 :(得分:0)
这就是我使用的。它也包含所有错误处理:
FB.ui
(
{
method : 'apprequests',
data: '',
display: 'dialog',
title : 'Invite a Friend',
message: 'I just sent you an invitation to play My Game.',
filters: ['app_non_users']
}, function(response)
{
if (response && response.request_ids)
{
jQuery.ajax
(
{
url: 'Invite_Request.php',
type: 'GET',
data:
{
'request_id': response.request_ids, 'signed_request': "<?php echo $_SESSION["SR"] ?>"
},
success: function(data)
{
if (data.error)
{
//jQuery("#inviteMessages").html('successful call, but error! ' + data.message);
}
else
{
jQuery("#inviteMessages").html('successful request! ' + data.message);
}
},
error: function(xhr, status, msg)
{
//jQuery("#inviteMessages").html('unsuccessful call, error! ' + status + ' ' + msg);
}
}
);
//jQuery("#inviteMessages").html('Successful request! Request ID = ' + response.request_ids);
}
else
{
//jQuery("#inviteMessages").html('Request failed!');
}
}
);