Send additional data Google/Apple Signup

I want to send the onboarding data along with the signup for Google/Apple . How can I do this? With email provider I can just use:
signUp.email(
{
email: values.email,
password: values.password,
name: values.name,
timeFormat: onboarding.timeFormat,
weekStartsOn: onboarding.weekStartsOn,
}
)
signUp.email(
{
email: values.email,
password: values.password,
name: values.name,
timeFormat: onboarding.timeFormat,
weekStartsOn: onboarding.weekStartsOn,
}
)
Then I want to have a database hook to call an endpoint.
2 Replies
RadiantFrog
RadiantFrogOP2w ago
I have some onboarding values that I need to create additional db entries for. How can I hook into this with hooks? I dont know how to get the data from the client to the hook.
Özgür
Özgür2w ago
I use cookies in such cases

Did you find this page helpful?