来自 public 页面的 Facebook 活动为空
Facbeook events from public page are empty
我想从 public Facebook 页面获取所有事件:https://www.facebook.com/vaitmusik/events
使用官方模块我总是会得到一个空数组。
const FB = require("fb");
FB.api(
"oauth/access_token",
{
client_id: "123456789",
client_secret: "9c88casdasfdsfsdfasd",
grant_type: "client_credentials",
},
function(oAuthResponse) {
FB.api(
"/Vaitmusik/events",
{
access_token: oAuthResponse.access_token,
},
function(eventsResponse) {
/*
eventsResponse
{ data: [] }
*/
}
);
}
);
我希望有一个包含所有事件的数组。
https://developers.facebook.com/docs/graph-api/reference/page/events/
This is a restricted edge. You cannot request access at this time.
换句话说,无法获取页面事件。
我想从 public Facebook 页面获取所有事件:https://www.facebook.com/vaitmusik/events
使用官方模块我总是会得到一个空数组。
const FB = require("fb");
FB.api(
"oauth/access_token",
{
client_id: "123456789",
client_secret: "9c88casdasfdsfsdfasd",
grant_type: "client_credentials",
},
function(oAuthResponse) {
FB.api(
"/Vaitmusik/events",
{
access_token: oAuthResponse.access_token,
},
function(eventsResponse) {
/*
eventsResponse
{ data: [] }
*/
}
);
}
);
我希望有一个包含所有事件的数组。
https://developers.facebook.com/docs/graph-api/reference/page/events/
This is a restricted edge. You cannot request access at this time.
换句话说,无法获取页面事件。