【发布时间】:2011-03-09 10:28:07
【问题描述】:
我正在尝试通过 Graph API 获取用户的事件和他的朋友事件。
首先,除了为每个好友发送新查询之外,还有其他选项可以获取所有好友事件吗? (即使它存在于其他协议中)
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];
}
其次,我可以获取用户的所有事件,而不仅仅是他标记的出席状态吗?
谢谢!
【问题讨论】:
标签: iphone ios facebook fbconnect