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.

do you know how to get in fbconnect the user email for iphone sdk? I get uid, name and sex. But I can't get the email.

  • (void)session:(FBSession *)session didLogin:(FBUID)uid { NSString *fql=[NSString stringWithFormat:@"select uid,name,sex,email,birthday from user where uid == %lld", uid];

http://developers.facebook.com/docs/guides/mobile/ here I don't see a solution. thanks

share|improve this question

2 Answers

The user needs to authorize the app to get the email.

share|improve this answer

In order to fetch user's email address, facebook requires developers to request "email" permission from the user and if the user grants the permission, you'll be able to fetch their email address.

There's a detailed documentation about the various types of permissions that your app can request from the user which enables your app to either read or write certain information on the user's behalf. Have a look: https://developers.facebook.com/docs/reference/api/permissions/

share|improve this answer

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.