Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How is this done? Is it even possible?

All the function calls seem correct, but the result is always false:

NSString *event = @"{\"name\":\"A party\",\"start_time\":\"1215929160\",\"end_time\":\"1215929160\",\"location\":\"Somewhere\"}";
NSDictionary *params = [NSDictionary dictionaryWithObject:event forKey:@"event_info"];
[[FBRequest requestWithDelegate:self] call:@"facebook.events.create" params:params];
share|improve this question
Please provide more information about what you are doing and include code samples. Then, please ask a specific question so that we can help you. From what you have provided so far the answer is yes, it is possible, but without more info from you I don't know what else to say to help you figure out what is wrong with your code. – Bart Gottschalk Mar 24 '10 at 15:32
Okay I have updated the question. – miorel Mar 24 '10 at 15:41

1 Answer

Maybe you need to ask about permissions:

  FBPermissionDialog* dialog = [[[FBPermissionDialog alloc] init] autorelease];
  dialog.delegate = self;
  dialog.permission = @"create_event";
  [dialog show];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.