通过FB连接获取朋友活动的问题

时间:2011-03-09 10:28:07

标签: iphone ios facebook fbconnect

我正在尝试通过Graph API获取用户的事件和他的朋友事件。

首先,除了为每个朋友发送新查询之外,还有其他选项可以获取所有朋友的活动吗? (即使它存在于其他协议中)

for(NSDictionary *朋友的朋友){

        NSLog(@"sending events for %@", [friend objectForKey:@"id"]);
        [facebook requestWithGraphPath:
         [NSString stringWithFormat:@"%@/events&since=today&until=tomorrow&limit=10", [friend objectForKey:@"id"]]
                           andDelegate:self];
    }

第二,我可以获得所有用户的活动而不仅仅是他标记的出勤状态吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

首先,您必须使用Extended Permission user_events和friends事件。至于您的第二部分问题是否已被保留,您可以查询event_member表以获取状态。希望它能起作用