我想在我的应用中在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];
请指导我选择正确的道路。
先谢谢。