I have configured my app to correctly allow a user to login via FB Connect 3.1 SDK (for iOS 6), and request email permissions:
NSArray *permissons = [[NSArray alloc] initWithObjects:@"email", nil];
[FBSession openActiveSessionWithReadPermissions:permissons
allowLoginUI:YES
completionHandler:
^(FBSession *session,
FBSessionState state, NSError *error) {
[self sessionStateChanged:session state:state error:error];
Afterwards, I need to determine a user's FB Session ID. Is this different from the access token? I believe the Session/Token ID may start with 'AAAFTZCN54f1EBA'? How may I retrieve this information post-authentication?
Thanks in Advance!