I am using Facebook iOS SDK 3.1.1 and has been successfully integrated a lot of Facebook features. Adhering to 3.1.1, I am logging in using
[FBSession openActiveSessionWithPermissions:permission
allowLoginUI:bAllowLoginUI
completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {
[self sessionStateChanged:session state:state error:error];
}];
Then I need to send "apprequests", and there is no new method to implement in SDK 3.1, so I've to fallback to the deprecated API using Facebook objects and FBDialog.
However, calling the deprecated dialog function:
[m_pFacebook dialog:@"apprequests"
andParams:params
andDelegate:delegate];
results in the FBDialog popping up and prompting the user to login again through the dialog. I need to go directly to the apprequests dialog without needing the user to input their credentials again and I am sure there's a way to do it as I've seen it implemented in Diamond Dash and other games.
I've tried setting the m_pFacebook.accessToken with FBSession.activeSession.accessToken, and I have also make sure that m_pFacebook.session is filled with the FBSession's logged in session
Anyone encountered this problem before? Thanks!