Getting all my events via Facebook iOS SDK
问题 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? 回答1: You can get list of events regardless of their RSVP status with next FQL