我想知道是否可以通过sdk(可能是fql)让用户参加活动。
我一直在查看维基的FQL信息以及图表api。但看起来他们只支持获取信息而不改变......
有什么建议吗?我想将此功能构建到应用程序中....
答案 0 :(得分:1)
使用新图API,我的解决方案如下所示:
Facebook* facebook = [Facebook new];
[facebook authorize:_facebookApiKey permissions:[NSArray arrayWithObjects:@"rsvp_event",@"user_events", nil] delegate:self];
NSString *eventIDWithSlashPrefix = @"/eventID";
NSMutableDictionary *params = [NSMutableDictionary new];
[params setObject:_facebook.accessToken forKey:@"access_token"];
[facebook requestWithGraphPath:[eventIDWithSlashPrefix stringByAppendingString:@"/attending"] andParams:params andHttpMethod:@"POST" andDelegate:self];