我想在我的应用程序中的 facebook 上创建事件。我正在使用 FBGraph Api。
这是代码:
NSString *strGetProfil=[NSString stringWithFormat:
@"https://graph.facebook.com/%@/events?access_token=%@&name=%@&start_time=%@&end_time=%@&description=%@&location=%@&location_id=
%@&privacy_type=%@",[getAllInfo objectAtIndex:4],[getAllInfo objectAtIndex:7],@"teing",@"2010-03-14T14:00:00",@"2010-03-14T17:30:00",@"",@"",@"",@""];
NSURL *url = [NSURL URLWithString:strGetProfil];
请指导我正确的道路。
提前致谢。