I am planning the development of a website that rely heavily on facebook integration, for this reason I will primarily push the user to use the "facebook login" option. For some reason, I don't want to leave out users that doesn't like to login with Facebook, so I will implement a classic user registration with email and password.
Now my questions are:
what is the correct way to manage both logins? Should I store fb user data on a record, saving at first login (as a registration) their fb_userid as a reference to use their data on my app? Can I get and store (with user agreement of course) their facebook email on the first visit?
What happens if users that have registered with email only, one day want to login with facebook? Will this create a new user record or should I merge the two logins in a unique user record?
Do I need to set cookies and session for fb users or not?
I see a lot of websites now that are using this double login but I never figured out how they manage it. In the first time I was thinking to use facebook login only, but a lot of people suggested that is a bad idea. What do you think?
Thanks for your help!