我已经制作了一个javascript函数,允许我向我的朋友列表发送邀请给我已经完成的Facebook应用程序。即使我完美地发送请求,其他成员也不会收到通知,但会发送请求。
以及其他代码
{
FB.login(function(response) {
if (response.authResponse)
{
console.log(response)
//getUserInfo();
/* make the API call */
FB.ui({method: 'apprequests',
message: 'Come and use UNCH..!'
}, function(response){
console.log(response);
});
} else
{
console.log('User cancelled login or did not fully authorize.');
}
},{scope: 'email,user_photos,user_videos,publish_stream,manage_pages,user_friends'});
}
所以任何想法?