Social login Account creation with additional field
How to pass additional state during a social provider sign-in (e.g., Google). When a new user signs up with say for example Google, I want to store an extra field in the database, like { "a": "123" }, alongside the default user data. How can I pass this custom data from the client and handle it on the server to save it in the DB?
6 Replies
Note: I have tried database hooks, Query params
userType
is accessible on path sign-in/social
, but not in callback/:id
. So, during dbHooks.user.create process, I could not access userType value. In database hooks only info provided by the social provider (for example GoogleProfile info) is present.
@Ping Please have a look. Is it possible to pass additional info?Super sorry!! It's 5am over here and I'm about to head to sleep. But I'll check this out first thing when I wake
Sure, Thanks!
Some more context: I noticed that the query parameters I passed are available in the before and after hooks of the
sign-in/social
endpoint (a POST
request). However, after successful execution, when the provider redirects to callback/:id
(a GET
request), the initially passed query parameters are lost.
In Passport.js, we can pass additional state, which is retained in the callback URL
My main goal is to store some additional data, when creating user account through social provider. How can I achieve it. If you could give some clue that would be helpful.I tried recreating this and attempting different solutions but couldn't really get anywhere either 😔
Maybe @bekacru can help?
That’s not possible. The state currently does stone additional metadata. You should collect this information once the user sings up.
Please have a look, on the before hook
sign-in/social
you can see the query I am passing, can I somehow pass that to the next request which is the callback/:id
? Thanks for replying.
and what is the purpose of loginHInt
? where can I access it? In the doc, there are no mention about the options we can pass to social provider.