You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docs/README insert a user if the user never signed in yet: db.run('INSERT INTO users (name) VALUES (?)', [profile.displayName]
Only thing inserted there is a displayName from FB (and implicitly a autoincremented ID). That autoincremented ID then gets inserted into federated_credentials along with their unique FB ID (profile.id).
Later if the user is signing in and they already signed in be4 (and hence exist in the above 2 tables), it will try to get their info from the DB... the cred.user_id i assume is FB passing along their unique FB ID from the front-end to this back-end url ... db.get('SELECT * FROM users WHERE id = ?', [ cred.user_id ], function(err, user) {
But that FB ID isn't inserted initially in the user table, its in the other federated_credentials table?
Should the docs be updated so the query to find the user searches the federated_credentials table (and then joins back to user to get other fields that may be in there like displayName/email ?
Thanks,
Arian
The text was updated successfully, but these errors were encountered:
Had a question about the FB passport README (which i guess also shows up on the docs here: https://www.passportjs.org/concepts/authentication/facebook/ )...
The docs/README insert a user if the user never signed in yet:
db.run('INSERT INTO users (name) VALUES (?)', [profile.displayName]
Only thing inserted there is a displayName from FB (and implicitly a autoincremented ID). That autoincremented ID then gets inserted into federated_credentials along with their unique FB ID (profile.id).
Later if the user is signing in and they already signed in be4 (and hence exist in the above 2 tables), it will try to get their info from the DB... the cred.user_id i assume is FB passing along their unique FB ID from the front-end to this back-end url ...
db.get('SELECT * FROM users WHERE id = ?', [ cred.user_id ], function(err, user) {
But that FB ID isn't inserted initially in the user table, its in the other federated_credentials table?
Should the docs be updated so the query to find the user searches the federated_credentials table (and then joins back to user to get other fields that may be in there like displayName/email ?
Thanks,
Arian
The text was updated successfully, but these errors were encountered: