If I run this request in the Graph API Explorer it returns the page's events: "facebookID?fields=events"
But when I run: https://graph.facebook.com/facebookID/feed?fields=events&access_token=MYTOKEN I get an error:
{
"error": {
"message": "(#100) Unknown fields: events.",
"type": "OAuthException",
"code": 100
}
}
Why can I run the request in Graph API Explorer but not in my script? When I only request the feed I get the events, but its ineffective and the array is complicated.
Is there a way of fetching the page's events without requesting the whole feed?
I found the right way to return all events from a Facebook-Page: https://graph.facebook.com/facebookID/events?access_token=MYTOKEN