saurabh_works
siddhantvarma
Guldberg
ts // login function async login(email: string, password: string) { console.log( await ThirdPartyEmailPassword.emailPasswordSignUp({ formFields: [ { id: 'email', value: email, }, { id: 'password', value: password, }, ], }) ); }
POST http://localhost:3333/api/signup 404 (Not Found)
joel04425
cg.vols
aleeza333
nikachu5338
xandor4223
tomita0022
Error: SuperTokens core threw an error for a POST request to path: '/recipe/accountlinking/user/primary' with status code: 402 and message: Account linking feature is not enabled for this app. Please contact support to enable it.
sammon2412
javascript import express from "express"; import { verifySession } from "supertokens-node/recipe/session/framework/express"; import { SessionRequest } from "supertokens-node/framework/express"; let app = express(); app.post("/like-comment", verifySession(), (req: SessionRequest, res) => { let userId = req.session!.getUserId(); //.... });
verifySession()
/like-comment
SessionAuth
SuperTokens is an open source authentication solution offering features like: Different types of login: Email / password, Passwordless (OTP or Magic link based).