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.

When you add facebook connect to allow facebook users to signin to your site, can you retireve the users name and email addresss?

share|improve this question

2 Answers

up vote 5 down vote accepted

Yes, you need to prompt them for data permission "email" first though. Facebook is also changing the way you can get access to private data very soon (hell, they change their API and policies daily; who can keep up). Check out the following links for more:

You'll want to add the list of permissions you want to prompt for in the login:

share|improve this answer

You can get name right after user connected, but the answer "how to do this" is depends on what type of integration do you use - "old" or "Graph", and which technology - JS, php, python, c#, etc

Email can be retrieved just after you granted the extended email permission. The common way to grant this permission is to ask it during the connection process, that is well described here and here

share|improve this answer
Thank you...... – 001 Jun 7 '10 at 12:00

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.