I'm tasked with integrating Facebook logins on a site I'm working on using their JavaScript API.
I can manage getting the authentication response back from Facebook just fine. I'm just not sure what to do with it.
What I need to do is during registration:
- Allow the user to sign up with a Facebook login.
- Store something in my own database on their account to look up at a later date when they login via Facebook.
Then when the return to the site:
- Establish that the user is logged into Facebook and get a FB access token.
- Securely, notify my API that the user is logged into Facebook, look up their account, and get a token for my own API.
I was just storing the Facebook ID and looking that up, but I realized that would be easily spoofed.
What is the most secure way to go about doing this?