I am following the Facebook iOS tutorial. I'm trying to implement their code:
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Come check out my app.", @"message",
nil];
[facebook dialog:@"apprequests"
andParams:params
andDelegate:self];
The dialog appears, I add my friends, then I click "Send". At this point nothing appears to happen. My friends (test accounts) never receive the notification.
This delegate method is called:
-(void)dialogDidComplete:(FBDialog *)dialog
{
}
Any ideas as to why my friends aren't receiving the notifications?
In essence, what I am trying to do is get people to share this app with their friends. They click on the link and it opens the app in the iTunes app store. Should I be doing this a different way?