In my iOS app, I get an access token using the following code:
[self.facebook authorize:[NSArray arrayWithObjects:@"user_events",
@"friends_events", nil]];
I then request my events with the following code:
[self.facebook requestWithGraphPath:@"me/events" andDelegate:friendsVC];
But as a response, I only get events I have RSVP'd to. I would like to get all my events including those I have not RSVP'd to.
Any ideas?
