I'm trying to let a user 'add a friend' using Facebook's iOS SDK.
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"brent", @"id",
nil];
[_facebook dialog:@"friends"
andParams:params
andDelegate:self];
The dialog opens up but says 'An error occurred with . Please try again later.'
Is there something wrong with the request? Is there a way to get a more detailed error?