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've been looking for a solid answer that explains how to keep 3.1.1 in my project but also implementing the app request dialog. What I've read says I need to import Facebook.h and call it like [self.facebook dialog:@"apprequests" andParams:params andDelegate:self]; but when I import Facebook.h and comment out #import <FacebookSDK/FacebookSDK.h> I then get conflicts with

[FBSession openActiveSessionWithReadPermissions:nil
                                              allowLoginUI:allowLoginUI
                                         completionHandler:^(FBSession *session,
                                                             FBSessionState state,
                                                             NSError *error) {
                                             [self sessionStateChanged:session
                                                                 state:state
                                                                 error:error];
                                         }];

Could someone guide me through how I maintain my 3.1.1 SDK but also add apprequests? My goal is to select FB users then send an app request to join my app.

Thanks,

Wes

share|improve this question
1  
Hi, developers.facebook.com/docs/tutorial/iossdk/… the new version (3.2) of Facebook SDK has supported for this. – Gia Dang May 4 at 9:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.