fsimoes
TheRien
rajhans84
ITEnthusiasm
Bailey
smsDelivery
Passwordless
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.
nik2208.2208
kuba_huba
api-key
override: { functions: (originalImplementation) => { return { ...originalImplementation, // override the thirdparty sign in / up API signInUp: async function(input) { // TODO: Some pre sign in / up logic let response = await originalImplementation.signInUp(input); if (response.status === "OK") { // This is the response from the OAuth tokens provided by the third party provider let accessToken = response.oAuthTokens["access_token"]; // other tokens like the refresh_token or id_token are also // available in the oAuthTokens object. // This gives the user's info as returned by the provider's user profile endpoint. let firstName = response.rawUserInfoFromProvider.fromUserInfoAPI!["first_name"]; // This gives the user's info from the returned ID token // if the provider gave us an ID token let lastName = response.rawUserInfoFromProvider.fromUserInfoAPI!["last_name"]; } return response; } } } }
ikak1595
SuperTokens is an open source authentication solution offering features like: Different types of login: Email / password, Passwordless (OTP or Magic link based).