使用facebook javascript API向朋友列表发布邀请

时间:2014-08-25 14:29:55

标签: javascript facebook facebook-graph-api

我已经制作了一个javascript函数,允许我向我的朋友列表发送邀请给我已经完成的Facebook应用程序。即使我完美地发送请求,其他成员也不会收到通知,但会发送请求。

enter image description here

以及其他代码

{
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'});

}

所以任何想法?

0 个答案:

没有答案