I am trying to allow users to RSVP to events through my iPhone app (it is entirely events based), but i'm having some troubles. I have

I have tried these 3 methods:

[facebook requestWithGraphPath:@"EVENT_ID/attending" andParams:nil andHttpMethod:@"POST" andDelegate:self];
[facebook requestWithGraphPath:@"EVENT_ID/attending" andParams:nil andHttpMethod:@"GET" andDelegate:self];
[facebook requestWithGraphPath:@"EVENT_ID/attending" andDelegate:self];

My test event ID is "216105945072171"

I get the same error for all 3: "The operation couldn’t be completed. (facebookErrDomain error 10000.)"


EDIT:

I got it working with this, however it feels like a hack of sorts. If anyone has a better solution, please post!

[facebook requestWithGraphPath:@"EVENT_ID/attending?method=POST&access_token=ACCESS_TOKEN" andDelegate:self];
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

According to my experience, Facebook original API have some issue to produce ErrDomain. Your issue may not occur to use another API as below:

http://www.capturetheconversation.com/technology/iphone-facebook-oauth-2-0-and-the-graph-api-a-tutorial-part-2

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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