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 would like to be able to like a Facebook status using the Graph API. I have successfully written a status update and a comment to a status update so it all seems to be perfectly set up. Still, I get an error when trying to like a status update.

This is the error I get:

Error details: {
    error =     {
        message = "(#200) This API call requires a valid app_id.";
        type = OAuthException;
    };
}

This is my code:

NSString *postId = [data objectForKey:@"post_id"];
NSString *request = [NSString stringWithFormat:@"%@/likes", postId];
[facebook requestWithGraphPath:request andParams:nil andHttpMethod:@"POST" andDelegate:self];

Does anyone know what I am doing wrong?

share|improve this question
2  
I'd imagine you didn't include a valid app_id in your request. – ceejayoz Aug 15 '11 at 14:25
Apparently I have to send a dictionary containing the application id as value to key app_id. [NSMutableDictionary dictionaryWithObjectsAndKeys:@"1234567890", @"app_id", nil] I thought that wouldn't be necessary as the app id is set when initializing facebook. Sorry, it was a stupid mistake. I'm not sure what the routine is here. Should you post an answer so that I can accept it? – simonbs Aug 15 '11 at 14:31
Sure, I've posted this as an answer now. Credit goes to Facebook, really, for the descriptive error message. – ceejayoz Aug 15 '11 at 14:45

1 Answer

up vote 2 down vote accepted

You need to include the app_id in your request.

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.