I'm trying to get the user's events and his friends events by the Graph API.
first, is there any other option getting all the friends events except sending new query for every one of them? (even if it exists in other protocols)
for( NSDictionary *friend in friends ) {
NSLog(@"sending events for %@", [friend objectForKey:@"id"]);
[facebook requestWithGraphPath:
[NSString stringWithFormat:@"%@/events&since=today&until=tomorrow&limit=10", [friend objectForKey:@"id"]]
andDelegate:self];
}
second, can I get ALL the user's events and not just what he has marked attendance status for?
Thanks!