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.

I'm trying to let users create an event on my public Facebook page via an iPhone app, and hopefully let ppl invite their friends to that event. The idea is that the iPhone app will be able to show the users events from that page, while everyone is able to add the events.

After Authorizing with permissions: create_event and manage_pages, i'm trying to run the following code:

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                       @"My Event",@"name",
                                       PAGE_ID, @"page_id",
                                       @"2011-11-10T13:30",@"start_time",
                                       @"2011-11-11T13:30",@"end_time", nil];

[facebook requestWithGraphPath:[NSString stringWithFormat: @"%@/events", PAGE_ID]
                    andParams:params
                andHttpMethod:@"POST"
                 andDelegate:self];

And I get and error saying: "(#200) Permissions error". Is it even possible? (creating an event on a page which a user doesn't own) and if so, what am I missing?

share|improve this question

1 Answer

permissions = [[NSArray alloc] initWithObjects:@"offline_access", @"user_events",@"create_event",@"rsvp_event", nil];

I hope that it is just your help.

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.