I have a carpool website where users can log in through my DB and everything is working fine.
Once logged in, users can post advertisements for carpooling.
Now my need is for users to log in through Facebook. How is such a scenario handled?
Case 1: User is not registered with my DB and used Facebook credentials. I can show pages which are read-only, but say now the user wants to post an ad, what do I do in this case?
My DB is structured in such a way that the postAd table has user_id as foreign key, so in this case should I add a user with that email_id and a dummy password to allow them to post? Or how are such scenarios handled?
Case 2: If user logs in using Facebook do I need to search in my DB with that email id to find that user?
I am using Spring Security.
How does such a website generally work?
Thanks.