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'm opening the facebook session with the email permission like so:

- (void)facebookOpenSession
{
NSArray *permissions = [NSArray arrayWithObjects:@"email", nil];
[FBSession openActiveSessionWithReadPermissions:permissions
                                   allowLoginUI:YES
                              completionHandler:
 ^(FBSession *session,
   FBSessionState state, NSError *error) {

     [self sessionStateChanged:session state:state error:error];
 }];
}

And then the important snippet of session state changed looks like:

- (void)sessionStateChanged:(FBSession *)session
                  state:(FBSessionState) state
                  error:(NSError *)error
{
switch (state) {
    case FBSessionStateOpen: {
        [[FBRequest requestForMe] startWithCompletionHandler:
         ^(FBRequestConnection *connection,
           NSDictionary<FBGraphUser> *user,
           NSError *error) {
             if (error) {
                //error
             }else{
                 self.myFirstNameLabel.text = user.first_name;
                 self.myLastNameLabel.text = user.last_name;
                 self.myEmailLabel.text = ???
             }
         }];
    }
    ...

How do I actually extract the user's email? Is it in one of the provided variables, or do I have to make another call within the completion handler?

Thanks in advance!

share|improve this question

1 Answer

up vote 5 down vote accepted

FBGraphUser doesn't have the property (i'm assuming because its optional/only available if you asked for the email permission) but you should still be able to access it from the dictionary like this:

[user objectForKey:@"email"]
share|improve this answer
Yep, that did the trick! – user1601540 Nov 22 '12 at 4:13

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.