How does my website know when users are logging in with their facebook account for the first time - so that if they arent registered with me i can then create the same.
|
|
|
You can experiment with FB.Event.Subscribe and 'auth.authResponseChange'. Check the documentation |
|||
|
|
|
I think to know the first time user logs in with facebook would have to be controlled on your side. You'll want to build some sort of logic to store the user's FB info like FB UID and email perhaps, in your DB when they login through FB. Additionally, you'll want to do a lookup for the user's UID and email in your DB on each time the user logs in through FB. You might also want to consider if the user ever decides to "disconnect" their account from FB / revoke access to your app through FB. In this case, you'll want to remove their UID and email from the DB since they've chosen to revoke access. If they decide to come back, then treat them as a new user and repeat the steps above. A majority of your code will be checking the response from |
|||
|
|