Facebook event creation through iPhone app and Facebook Connect
        Posted  
        
            by miorel
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by miorel
        
        
        
        Published on 2010-03-24T15:28:01Z
        Indexed on 
            2010/03/24
            15:43 UTC
        
        
        Read the original article
        Hit count: 1189
        
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];
        © Stack Overflow or respective owner