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 writing an iPhone application.

I want to give the user the option to invite friends to start using my application via Facebook.

More specifically I want to present a dialog that will let the user to select specific friends to invite.

How can I do this?

Thanks.

share|improve this question
Check out this link: stackoverflow.com/questions/14157784/… – NeverHopeless yesterday

2 Answers

up vote 8 down vote accepted

You can do something like this:

Facebook* facebook = 
   [[Facebook alloc] initWithAppId:@"YOUR_FACEBOOK_APP_ID" andDelegate:self];

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                       @"My Title", @"title",
                                       @"Come check out my app.",  @"message",
                                       @"FACEBOOK_USER_ID", @"to",
                                       nil]; 

[facebook dialog:@"apprequests" andParams:params andDelegate:self];

You can see the list of possible parameters at this page (scroll down): http://developers.facebook.com/docs/reference/dialogs/requests/

share|improve this answer
thanks very useful. Is there any way to know on the code what where the invited friends? – xus Aug 1 '12 at 14:56
@xus Not sure what you mean? – Martin Ingvar Kofoed Jensen Aug 2 '12 at 10:06
I mean, how do I know on the code what where the users that the user has selected for the request, to keep the information in the app – xus Aug 3 '12 at 11:04
2  
hi i'm using a 3.1 facebook sdk. How can use this framework to send automatically request to other user to "try the application" ? – milonet Jan 31 at 22:29

You can either use the share dialog to share the Link to download the app to the user's wall, or write custom UI elements and use API Calls to build your own sharing module. Trying using a Facebook iOS SDK to simplify the process or you will have a lot of work to do.

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.