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?
app_id.[NSMutableDictionary dictionaryWithObjectsAndKeys:@"1234567890", @"app_id", nil]I thought that wouldn't be necessary as the app id is set when initializingfacebook. 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