supertokens-node icon indicating copy to clipboard operation
supertokens-node copied to clipboard

Node SDK for SuperTokens core

Results 117 supertokens-node issues
Sort by recently updated
recently updated
newest added

If a user marks a form field as optional, right now it means that it must still be part of the request body, but it being an empty string is...

Recipes like: - User roles - user metadata Should be initialised on supertokens.init as opposed to making the user initialise them. We can add extra config values to supertokens.init which...

## Problem When the SDK calls an API for a third party provider and receives an error it simply returns the error message. The response data from the third party...

Could we potentially get exported types for the api methods? e.g. https://github.com/supertokens/supertokens-node/blob/0e3d0e30437d69edcb881c9dfb589bbea2519a48/lib/ts/recipe/thirdpartyemailpassword/types.ts#L245 Something along the lines of: ``` export interface ThirdPartySignInUpPOSTInput { provider: TypeProvider; code: string; redirectURI: string; authCodeResponse?: any;...

Until their new email / phone has not been verified, they must only be able to login via their older email / phone.

When exchanging the auth code response with the access token, we should check for the status code and if it is an error code, we should send a FIELD_ERROR to...

Hey, I have begun work on h3 support for SuperTokens, so it can be used in nuxt3. Here's a branch with current code I have made: https://github.com/Kall7/supertokens-node/tree/h3-support For testing I'm...

Some providers like LinkedIn do not accept application/json content-type for that API. So we must allow a way for users to change or override this method.

I really love trpc ([trpc.io](https://trpc.io/)) and it gave me made easy api and I really like supertoken but I am not able find supertoken + trpc docs can you provide...

the way we use axios in our supertokens node library, it will not perform well under heavy load.. each axios call will try to establish a TCP connection to the...

enhancement