1

我正在尝试使用以下代码邀请登录的 facebook 用户的朋友参加某个活动:-

FB.ui({method: 'apprequests',
       message : user.name + " has invited you to an event",
      title : "Invite friends to go along with you",
      },function(response){
        for(i=0;i<response.to.length;i++){
            FB.api('/'+eventId+'/invited/'+user.id,'post',function(resp){
            alert(resp);});
        }
      });

但我收到此错误

error:{"message":"(#200) ","type":"OAuthException","code":200}

我有来自用户的 create_event、manage_pages、publish_stream、photo_upload 权限。谁能给我指点我哪里出错了。

4

1 回答 1

3

这是一个错误。

https://developers.facebook.com/bugs/312375168858626?browse=search_5017eadead76b7a22667493

当开发人员抱怨错误时,Facebook 会解决错误。在上面的链接中,您应该报告您遇到与作者相同的问题。

于 2012-10-05T12:30:53.427 回答