When you add facebook connect to allow facebook users to signin to your site, can you retireve the users name and email addresss?
A:
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
zerkms
2010-06-07 01:23:23
Thank you......
K001
2010-06-07 12:00:25
+2
A:
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:
- http://developers.facebook.com/docs/authentication/permissions
- http://developers.facebook.com/docs/guides/upgrade#permissions
You'll want to add the list of permissions you want to prompt for in the login:
Typeoneerror
2010-06-07 01:25:31