我试图通过使用以下代码邀请登录的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权限。任何人都可以在我出错的地方提供指针。
答案 0 :(得分:2)
这是一个错误。
https://developers.facebook.com/bugs/312375168858626?browse=search_5017eadead76b7a22667493
Facebook解决了开发者抱怨它们时的错误。在上面的链接中,您应该报告您遇到与作者相同的问题。