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