アプリでFacebookにイベントを作成したい。FBGraphApiを使用しています。
コードは次のとおりです。
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];
正しい道を教えてください。
前もって感謝します。