Callbacks
Callbacks are asynchronous functions you can use to control what happens when an action is performed.
Callbacks are extremely powerful, especially in scenarios involving JSON Web Tokens as they allow you to implement access controls without a database and to integrate with external databases or APIs.
Example
You can specify a handler for any of the callbacks below.
The documentation below shows how to implement each callback and their default behaviour.
Signin
Use the signin callback to control if a user is allowed to sign in or not.
This is triggered before sign in flow completes, so the user profile may be a user object (with an ID) or it may be just their name and email address, depending on the sign in flow and if they have an account already.
When using email sign in, this method is triggered both when the user requests to sign in and again when they activate the link in the sign in email.
Redirect
The redirect callback is called anytime the user is redirected to a callback URL (e.g. on signin or signout).
By default, for security, only Callback URLs on the same URL as the site are allowed, you can use the redirect callback to customise that behaviour.
Session
The session callback is called whenever a session is checked.
e.g. getSession()
, useSession()
, /api/auth/session
(etc)
If JSON Web Tokens are enabled, you can also access the decrypted token and use this method to pass information from the encoded token back to the client.
The JWT callback is invoked before the session() callback is called, so anything you add to the JWT will be immediately available in the session callback.
JWT
This JSON Web Token callback is called whenever a JSON Web Token is created (i.e. at sign in) or updated (i.e whenever a session is accesed in the client).
e.g. /api/auth/signin
, getSession()
, useSession()
, /api/auth/session
(etc)
The JWT expiry time is updated / extended whenever a session is accessed.
On sign in, the raw profile object returned by the provider is also passed as a parameter. It is not available on subsequent calls. You can take advantage of this to persist additional data from the profile in the JWT.