I have a code that handles sessionStateChanged as taught in http://developers.facebook.com/docs/tutorials/ios-sdk-tutorial/personalize/
I think once the session is open I want to store the user.
So basically I want to run:
[[FBRequest requestForMe] startWithCompletionHandler:
^(FBRequestConnection *connection,
NSDictionary<FBGraphUser> *user,
NSError *error) {
if (!error) {
_user=user;
while (false);
}
[[NSNotificationCenter defaultCenter] postNotificationName:FACEBOOKSESSIONCHANGED object:self];
}];
The problem is I do not want to run this every session change. What about if the user is just the same user with the previous user?
So I want to do something if currentUserId = _user.id don't request anymore.
But how do I know the currentUserID?
Here is the complete code
- (void)sessionStateChanged:(FBSession *)session state:(FBSessionState) state error:(NSError *)error
{
switch (state) {
case FBSessionStateOpen: {
}
break;
case FBSessionStateClosed:
case FBSessionStateClosedLoginFailed:
break;
default:
break;
}
if (error) {
UIAlertView *alertView = [[UIAlertView alloc]
initWithTitle:@"Error"
message:error.localizedDescription
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alertView show];
}
NSAssert(FBSession.activeSession.isOpen , @"How come FBSession not active");
[[FBRequest requestForMe] startWithCompletionHandler:
^(FBRequestConnection *connection,
NSDictionary<FBGraphUser> *user,
NSError *error) {
if (!error) {
_user=user;
while (false);
}
[[NSNotificationCenter defaultCenter] postNotificationName:FACEBOOKSESSIONCHANGED object:self];
}];
}