n1ru4l
mas_dwi
fluentcoding
nik2208
SuperEric
result = await sign_up(sign_up_input.email, sign_up_input.password)
TypeError: sign_up() missing 1 required positional argument: 'tenant_id'
result = await sign_up(tenant_id="", email=sign_up_input.email, password=sign_up_input.password)
TypeError: sign_up() takes 3 positional arguments but 4 were given
arwenxs
robschilder
mathewpregasen9889
JuanJo
sharma8471
superTokensPasswordless.createCode({ email: "john@example.org" })
const userInputCode = superTokensPasswordless.getLinkCodeFromURL()
superTokensPasswordless.consumeCode({ userInputCode: "8465AWETA" }).then((res) => { if(res.createdUser){ console.log(JSON.stringify(res.user))} })
SuperTokens is an open source authentication solution offering features like: Different types of login: Email / password, Passwordless (OTP or Magic link based).