Hi,
I currently have a web app using the auth-js library, and have created a custom login and sign-up form which use the methods: webAuth.login() and webAuth.signup().
Is there any way to automatically login after signing up?
When a user successfully signs up, the response from webAuth.signup() looks like this…
response = {
Id: “j5j5j5j5ce0542csDFDFZFfxc”,
email: “some_email@gmail.com”,
emailVerified: false
}
… and the user must then login manually.
Is it possible to have an access token returned from webAuth.signup()?
Thank you!
Ryan