我正在使用图形API来获取由使用FB.login API进行身份验证的用户创建的事件列表。
我有一个得到朋友的API似乎适用于我,但获取事件无法正常工作。
//function that gets the list of friends
function getFriends() {
FB.api('/me/friends', function(response) {
//console.log(response);
});
}
//function that gets the list of events for the user.
function getEvents() {
FB.api('/me/events',function(data) {
if (data && !data.error) {
console.log(data);
}
});
}
答案 0 :(得分:0)
您的用户访问令牌需要user_events
权限。