Hey all, I'm using third party sign on (Google SSO...
# support-questions-legacy
b
Hey all, I'm using third party sign on (Google SSO) and the built in SignInUp recipe and have a question about sign up. I'd like to gate sign up via an invite system and am trying to separate out sign in from sign up. I was hoping to let the user go through the log in process on Google, get redirected back to my app, then use the data in the response to determine if we let them go through SignInUp or redirect them to a page where they can request an invite. Is this something that is supported? The issue I'm running into is that
authCodeResponse
is undefined until I call
signInUpPOST
and get back an
id_token
but that function also implicitly creates a new user if they don't exist which I don't want to happen until I have a chance to check if they should be allowed.