I am currently working on an iOS application and I am using apprequests to invoke a dialog box to send a request. I see that everything is working fine (I got a dialog termination), but the user does not receive the request! I work with an FB test application (not public), I think if something is missing for me when setting up an FB application? Or is there a permission that I must allow?
Here is a small snippet of my code:
-(void)appRequestsWithMessage:(NSString )message { NSMutableDictionary params = [NSMutableDictionary dictionaryWithObjectsAndKeys: message, @"message", nil]; [facebook dialog:@"apprequests" andParams:params andDelegate:self]; }
source share