Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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]  

}  
share|improve this question

1 Answer

You should check the Android and iOS: Discovery via Requests Best Practices official blog post.

It discusses (among other things) how to send user requests along with some relevant data, and then how to identify the request and get the associated data.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.