I’m using this to send a request to a friend on Facebook. I’d like for the person that received the request to be able to open it and receive a bonus for accepting the request. How would I go about acknowledging the request on the receiving end?
-(IBAction)sendRequest:(id)sender
{
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Come check out my app.", @"message",
nil];
AppDelegate *aDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
[aDelegate.facebook dialog:@"apprequests" andParams:params andDelegate:self]
}