StackApp
This is a detailed reference for the StackApp
object. If you’re looking for a more high-level overview, please read the respective page in the Concepts section.
On this page:
StackClientApp
A StackApp
with client-level permissions. It contains most of the useful methods and hooks for your client-side code.
Table of Contents
Constructor
Creates a new StackClientApp
instance.
Because each app creates a new connection to Stack Auth’s backend, you should re-use existing instances wherever possible.
Parameters
An object containing multiple properties.
Where to store the user’s session tokens. In most cases, this is "nextjs-cookie"
, which will store the tokens in cookies using Next.js.
Persists the session tokens in window.cookie
in browser environments, or Next.js cookies in server environments. This is the most common choice.
Persists the session tokens in window.cookie
in browser environments. Will not read or write cookies on the server.
Reads the initial value for the session tokens from the provided object. It expects the same format as the object returned by currentUser.getAuthJson()
.
Does not persist changes to the tokens.
Reads the initial value for the session tokens from headers of the request object. For more information, see the documentation for currentUser.getAuthHeaders()
.
Does not persist changes to the tokens.
The base URL for Stack Auth’s API. Only override this if you are self-hosting Stack Auth. Defaults to https://api.stack-auth.com
, unless overridden by the NEXT_PUBLIC_STACK_API_URL
environment variable.
The ID of the project that the app is associated with, as found on Stack Auth’s dashboard. Defaults to the value of the NEXT_PUBLIC_STACK_PROJECT_ID
environment variable.
The publishable client key of the app, as found on Stack Auth’s dashboard. Defaults to the value of the NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY
environment variable.
The URLs that Stack uses to route and redirect.
The URL of the home page.
The URL of the sign-in page.
The URL that the user will be redirected to after successful signing in.
The URL of the sign-up page.
The URL that the user will be redirected to after successful signing up.
The URL that the user will be redirected to after successful signing out.
The URL of the email verification page.
The URL of the password reset page.
The URL of the forgot password page.
The URL of the account settings page.
The URL of the handler root.
By default, the Stack app will automatically prefetch some data from Stack’s server when this app is first constructed. Those network requests may be unnecessary if the app is never used or disposed of immediately. By setting this option to true
, you can disable the prefetching behavior.
Signature
Examples
stackClientApp.getUser([options])
Gets the current user.
Parameters
An object containing multiple properties.
What to do if the user is not signed in. Defaults to "return-null"
.
Returns null
. The default.
Redirects the user to the signIn
URL.
Throws an error.
Returns
Promise<CurrentUser | null>
: The current user, or null
if not signed in. If or
is "redirect"
or "throw"
, never returns null
.
Signature
Examples
stackClientApp.getProject()
Gets the current project.
Parameters
No parameters.
Returns
Promise<Project>
: The current project.
Signature
Examples
stackClientApp.signInWithOAuth(provider)
Initiates the OAuth sign-in process with the specified provider. This method:
- Redirects the user to the OAuth provider’s sign-in page.
- After successful authentication, redirects the user back to your application.
- The final redirect destination is determined as follows:
- If an
after_auth_return_to
query parameter was provided when calling this function, it uses that URL. - Otherwise, it uses the
afterSignIn
URL configured in the app settings.
- If an
Parameters
The type of the OAuth provider to sign in with.
Returns
Promise<void>
.
Signature
Examples
stackClientApp.signInWithCredential([options])
Sign in using email and password credentials. The behavior is as follows:
-
If sign-in is successful:
- By default, redirects the user to the
afterSignIn
URL. - If
after_auth_return_to
is provided in the query parameters, redirects to that URL instead. - If
noRedirect
is set totrue
, it will not redirect and instead return a successResult
object.
- By default, redirects the user to the
-
If sign-in fails:
- No redirection occurs.
- Returns a
Result
object containing error information.
Parameters
An object containing multiple properties.
The email of the user to sign in with.
The password of the user to sign in with.
Whether to not redirect the user after sign-in. Defaults to false
.
Returns
Promise<Result<undefined, KnownErrors["EmailPasswordMismatch"]>>
: A promise that resolves to a Result
object.
Signature
Examples
stackClientApp.signUpWithCredential([options])
Sign up using email and password credentials. The behavior is as follows:
-
If sign-up is successful:
- By default, redirects the user to the
afterSignUp
URL. - If
after_auth_return_to
is provided in the query parameters, redirects to that URL instead. - If
noRedirect
is set totrue
, it will not redirect and instead return a successResult
object.
- By default, redirects the user to the
-
If sign-up fails:
- No redirection occurs.
- Returns a
Result
object containing error information.
Parameters
An object containing multiple properties.
The email of the user to sign up with.
The password of the user to sign up with.
Whether to not redirect the user after sign-up. Defaults to false
.
Returns
Promise<Result<undefined, KnownErrors["UserWithEmailAlreadyExists"] | KnownErrors["PasswordRequirementsNotMet"]>>
: A promise that resolves to a Result
object.
Signature
Examples
stackClientApp.sendForgotPasswordEmail(email)
Send a forgot password email to an email address.
Parameters
The email of the user to send the forgot password email to.
Returns
Promise<Result<undefined, KnownErrors["UserNotFound"]>>
: A promise that resolves to a Result
object.
Signature
Examples
stackClientApp.sendMagicLinkEmail(email)
Send a magic link/OTP sign-in email to an email address.
Parameters
The email of the user to send the magic link email to.
Returns
Promise<Result<{ nonce: string }, KnownErrors["RedirectUrlNotWhitelisted"]>>
: A promise that resolves to a Result
object.
Signature
Examples
StackServerApp
Like StackClientApp
, but with server permissions. Has full read and write access to all users.
Since this functionality should only be available in environments you trust (ie. your own server), it requires a SECRET_SERVER_KEY
. In some cases, you may want to use a StackServerApp
on the client; an example for this is an internal dashboard that only your own employees have access to. We generally recommend against doing this unless you are aware of and protected against the (potentially severe) security implications of exposing SECRET_SERVER_KEY
on the client.
Table of Contents
Constructor
Parameters
An object containing multiple properties.
Where to store the user’s session tokens. In most cases, this is "nextjs-cookie"
, which will store the tokens in cookies using Next.js.
Persists the session tokens in window.cookie
in browser environments, or Next.js cookies in server environments. This is the most common choice.
Persists the session tokens in window.cookie
in browser environments. Will not read or write cookies on the server.
Reads the initial value for the session tokens from the provided object. It expects the same format as the object returned by currentUser.getAuthJson()
.
Does not persist changes to the tokens.
Reads the initial value for the session tokens from headers of the request object. For more information, see the documentation for currentUser.getAuthHeaders()
.
Does not persist changes to the tokens.
The base URL for Stack Auth’s API. Only override this if you are self-hosting Stack Auth. Defaults to https://api.stack-auth.com
, unless overridden by the NEXT_PUBLIC_STACK_API_URL
environment variable.
The ID of the project that the app is associated with, as found on Stack Auth’s dashboard. Defaults to the value of the NEXT_PUBLIC_STACK_PROJECT_ID
environment variable.
The publishable client key of the app, as found on Stack Auth’s dashboard. Defaults to the value of the NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY
environment variable.
The secret server key of the app, as found on Stack Auth’s dashboard. Defaults to the value of the SECRET_SERVER_KEY
environment variable.
The URLs that Stack uses to route and redirect.
The URL of the home page.
The URL of the sign-in page.
The URL that the user will be redirected to after successful signing in.
The URL of the sign-up page.
The URL that the user will be redirected to after successful signing up.
The URL that the user will be redirected to after successful signing out.
The URL of the email verification page.
The URL of the password reset page.
The URL of the forgot password page.
The URL of the account settings page.
The URL of the handler root.
By default, the Stack app will automatically prefetch some data from Stack’s server when this app is first constructed. Those network requests may be unnecessary if the app is never used or disposed of immediately. By setting this option to true
, you can disable the prefetching behavior.
Signature
Examples
stackServerApp.getUser([id], [options])
Similar to StackClientApp.getUser()
, but:
- Returns a
ServerUser
, which is more powerful - Has an additional overload that takes an
id
parameter instead ofoptions
, returning the user with the given ID instead of the current user.
Parameters
The ID of the user to get.
An object containing multiple properties.
What to do if the user is not signed in. Defaults to "return-null"
.
Returns null
. The default.
Redirects the user to the signIn
URL.
Throws an error.
Returns
Promise<ServerUser | null>
: The user, or null if not found. If id
is not provided, returns a CurrentServerUser
.
If id
is not provided and or
is "redirect"
or "throw"
, never returns null
.
Signature
Examples
stackServerApp.listUsers([options])
Lists all users on the project.
Parameters
An object containing multiple properties.
The cursor to start the result set from.
The maximum number of items to return. If not provided, it will return all users.
The field to sort the results by. Currently, only signedUpAt
is supported.
Whether to sort the results in descending order.
A query to filter the results by. This is a free-text search on the user’s display name and emails.
Returns
Promise<ServerUser[]>
: The list of users. The array has an additional nextCursor
property, which is the cursor to the next page of users if limit
is provided.
Signature
Examples
stackServerApp.createUser([options])
Creates a new user from the server.
Note that this function is meant for server-side code; on the client, use any of the signInWithXyz
or signUpWithXyz
functions instead.
Parameters
An object containing multiple properties.
The primary email of the user to create.
Whether the primary email is verified. Defaults to false
.
Whether the primary email is enabled. When using password or otp auth, this must be set to true
, otherwise the user will not be able to sign in.
The password for the new user. An error will be thrown if a password is provided but password authentication is not enabled for the project in the dashboard.
Enables OTP (One-Time Password) or magic link sign-in using the primary email.
Note: Only verified emails can be used for OTP sign-in. An error will be thrown
if set to true
when OTP authentication is not enabled in the dashboard.
The display name of the user to create.
Returns
Promise<ServerUser>
: The created user.
Signature
Examples
stackServerApp.getTeam(id)
Get a team by its ID.
Parameters
The ID of the team to get.
Returns
Promise<ServerTeam | null>
: The team, or null if not found.
Signature
Examples
stackServerApp.listTeams()
Lists all teams on the current project.
Parameters
None.
Returns
Promise<ServerTeam[]>
: All teams on the current project.
Signature
Examples
stackServerApp.createTeam([options])
Creates a team.
This is different from user.createTeam()
because it does not add a user to the team. The newly created team will not have a creator.
Parameters
The display name for the team.
The URL of the team’s profile image (base64 image allowed, crop and compress before passing it in), or null to remove.
Returns
Promise<ServerTeam>
: The created team.