i'm using the facebook iOS sdk. I need to send friend requests between users of facebook, from an iOS app. I know that can not be sent via graph API. I'm trying to through dialog of facebook i do not know how. Can anyone help me?
This is my code:
Facebook *face = [[Facebook alloc] initWithAppId:@"APP_ID" andDelegate:self];
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"user_id", @"id",
nil];
[face dialog:@"me/friends"
andParams:params
andDelegate:self];
With this code i get a dialog with this text: "The page you requested was not found"