我正在尝试使用fb.api邀请用户参加Facebook活动:
FB.api('/345345345345453/attending', 'post', function (data) {
console.log(data);
});
我也尝试过,但也没有帮助:
FB.api('/345345345345453/attending&access_token + '/ACCESSTOKEN'', 'post', function (data) {
console.log(data);
});
我在日志中收到一条消息,内容为:
"(#100) User must be able to RSVP to the event."
谁能帮忙。谢谢。
最佳答案
如果要邀请用户,则应使用invited
而不是attending
。 See the documentation。使用attending
会自动将其标记为参加您的活动。