I am showing a dialog in an iOS app to allow users to select some friends to whom send an invitation to the app. The dialog is displayed, you can select some friends and press send.
Dialog delegate method callback is called successfuly. So far so good, but the friend is not receiving any invitation, is that because the app is still in development?
This is the code I am using to show the dialog, is there any missing parameter? (access token is fine because the app works).
// Show the UI Dialog
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
kFacebookAppID,@"access_token", @"Invitation message", @"message",nil];
[facebook dialog:@"apprequests"andParams:params andDelegate:self];