Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.