@auth0/nextjs-auth0
v3.5.0
Published
Auth0 Next.js SDK
Downloads
953,392
Maintainers
Readme
@auth0/nextjs-auth0
Getting Started
1. Install the SDK
npm i @auth0/[email protected]
2. Add the environment variables
Add the following environment variables to your .env.local
file:
AUTH0_DOMAIN=
AUTH0_CLIENT_ID=
AUTH0_CLIENT_SECRET=
AUTH0_SECRET=
APP_BASE_URL=
The AUTH0_DOMAIN
, AUTH0_CLIENT_ID
, and AUTH0_CLIENT_SECRET
can be obtained from the Auth0 Dashboard once you've created an application. This application must be a Regular Web Application
.
The AUTH0_SECRET
is the key used to encrypt the session and transaction cookies. You can generate a secret using openssl
:
openssl rand -hex 32
The APP_BASE_URL
is the URL that your application is running on. When developing locally, this is most commonly http://localhost:3000
.
[!IMPORTANT]
You will need to register the follwing URLs in your Auth0 Application via the Auth0 Dashboard:
- Add
http://localhost:3000/auth/callback
to the list of Allowed Callback URLs- Add
http://localhost:3000/auth/logout
to the list of Allowed Logout URLs
3. Create the Auth0 SDK client
Create an instance of the Auth0 client. This instance will be imported and used in anywhere we need access to the authentication methods on the server.
Add the following contents to a file named lib/auth0.ts
:
import { Auth0Client } from "@auth0/nextjs-auth0/server"
export const auth0 = new Auth0Client()
4. Add the authentication middleware
Create a middleware.ts
file in the root of your project's directory:
import type { NextRequest } from "next/server"
import { auth0 } from "./lib/auth0"
export async function middleware(request: NextRequest) {
return await auth0.middleware(request)
}
export const config = {
matcher: [
/*
* Match all request paths except for the ones starting with:
* - _next/static (static files)
* - _next/image (image optimization files)
* - favicon.ico, sitemap.xml, robots.txt (metadata files)
*/
"/((?!_next/static|_next/image|favicon.ico|sitemap.xml|robots.txt).*)",
],
}
[!NOTE]
If you're using asrc/
directory, themiddleware.ts
file must be created inside thesrc/
directory.
You can now begin to authenticate your users by redirecting them to your application's /auth/login
route:
import { auth0 } from "@/lib/auth0"
export default async function Home() {
const session = await auth0.getSession()
if (!session) {
return (
<main>
<a href="/auth/login?screen_hint=signup">Sign up</a>
<a href="/auth/login">Log in</a>
</main>
)
}
return (
<main>
<h1>Welcome, {session.user.name}!</h1>
</main>
)
}
[!IMPORTANT]
You must use<a>
tags instead of the<Link>
component to ensure that the routing is not done client-side as that may result in some unexpected behavior.
Customizing the client
You can customize the client by using the options below:
| Option | Type | Description |
| ----------------------- | ------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| domain | string
| The Auth0 domain for the tenant (e.g.: example.us.auth0.com
). If it's not specified, it will be loaded from the AUTH0_DOMAIN
environment variable. |
| clientId | string
| The Auth0 client ID. If it's not specified, it will be loaded from the AUTH0_CLIENT_ID
environment variable. |
| clientSecret | string
| The Auth0 client secret. If it's not specified, it will be loaded from the AUTH0_CLIENT_SECRET
environment variable. |
| authorizationParameters | AuthorizationParameters
| The authorization parameters to pass to the /authorize
endpoint. See Passing authorization parameters for more details. |
| appBaseUrl | string
| The URL of your application (e.g.: http://localhost:3000
). If it's not specified, it will be loaded from the APP_BASE_URL
environment variable. |
| secret | string
| A 32-byte, hex-encoded secret used for encrypting cookies. If it's not specified, it will be loaded from the AUTH0_SECRET
environment variable. |
| signInReturnToPath | string
| The path to redirect the user to after successfully authenticating. Defaults to /
. |
| session | SessionConfiguration
| Configure the session timeouts and whether to use rolling sessions or not. See Session configuration for additional details. |
| beforeSessionSaved | BeforeSessionSavedHook
| A method to manipulate the session before persisting it. See beforeSessionSaved for additional details. |
| onCallback | OnCallbackHook
| A method to handle errors or manage redirects after attempting to authenticate. See onCallback for additional details. |
| sessionStore | SessionStore
| A custom session store implementation used to persist sessions to a data store. See Database sessions for additional details. |
Passing authorization parameters
There are 2 ways to customize the authorization parameters that will be passed to the /authorize
endpoint. The first option is through static configuration when instantiating the client, like so:
export const auth0 = new Auth0Client({
authorizationParameters: {
scope: "openid profile email",
audience: "urn:custom:api",
},
})
The second option is through the query parameters to the /auth/login
endpoint which allows you to specify the authorization parameters dynamically. For example, to specify an audience
, the login URL would look like so:
<a href="/auth/login?audience=urn:my-api">Login</a>
The returnTo
parameter
Redirecting the user after authentication
The returnTo
parameter can be appended to the login to specify where you would like to redirect the user after they have completed their authentication and have returned to your application.
For example: /auth/login?returnTo=/dashboard
would redirect the user to the /dashboard
route after they have authenticated.
Redirecting the user after logging out
The returnTo
parameter can be appended to the logout to specify where you would like to redirect the user after they have logged out.
For example: /auth/login?returnTo=https://example.com/some-page
would redirect the user to the https://example.com/some-page
URL after they have logged out.
[!NOTE]
The URLs specified asreturnTo
parameters must be registered in your client's Allowed Logout URLs.
Accessing the authenticated user
In the browser
To access the currently authenticated user on the client, you can use the useUser()
hook, like so:
"use client"
import { useUser } from "@auth0/nextjs-auth0"
export default function Profile() {
const { user, isLoading, error } = useUser()
if (isLoading) return <div>Loading...</div>
return (
<main>
<h1>Profile</h1>
<div>
<pre>{JSON.stringify(user, null, 2)}</pre>
</div>
</main>
)
}
On the server (App Router)
On the server, the getSession()
helper can be used in Server Components, Server Routes, Server Actions, and middleware to get the session of the currently authenticated user and to protect resources, like so:
import { auth0 } from "@/lib/auth0"
export default async function Home() {
const session = await auth0.getSession()
if (!session) {
return <div>Not authenticated</div>
}
return (
<main>
<h1>Welcome, {session.user.name}!</h1>
</main>
)
}
On the server (Pages Router)
On the server, the getSession(req)
helper can be used in getServerSideProps
, API routes, and middleware to get the session of the currently authenticated user and to protect resources, like so:
import type { GetServerSideProps, InferGetServerSidePropsType } from "next"
import { auth0 } from "@/lib/auth0"
export const getServerSideProps = (async (ctx) => {
const session = await auth0.getSession(ctx.req)
if (!session) return { props: { user: null } }
return { props: { user: session.user ?? null } }
}) satisfies GetServerSideProps<{ user: any | null }>
export default function Page({
user,
}: InferGetServerSidePropsType<typeof getServerSideProps>) {
if (!user) {
return (
<main>
<p>Not authenticated!</p>
</main>
)
}
return (
<main>
<p>Welcome, {user.name}!</p>
</main>
)
}
Getting an access token
The getAccessToken()
helper can be used both in the browser and on the server to obtain the access token to call external APIs. If the access token has expired and a refresh token is available, it will automatically be refreshed and persisted.
In the browser
To obtain an access token to call an external API on the client, you can use the getAccessToken()
helper, like so:
"use client"
import { getAccessToken } from "@auth0/nextjs-auth0"
export default function Component() {
async function fetchData() {
const token = await getAccessToken()
// call external API with the token...
}
return (
<main>
<button onClick={fetchData}>Fetch Data</button>
</main>
)
}
On the server (App Router)
On the server, the getAccessToken()
helper can be used in Server Components, Server Routes, Server Actions, and middleware to get an access token to call external APIs, like so:
import { NextResponse } from "next/server"
import { auth0 } from "@/lib/auth0"
export async function GET() {
const token = await auth0.getAccessToken()
// call external API with token...
return NextResponse.json({
message: "Success!",
})
}
On the server (Pages Router)
On the server, the getAccessToken(req)
helper can be used in getServerSideProps
, API routes, and middleware to get an access token to call external APIs, like so:
import type { NextApiRequest, NextApiResponse } from "next"
import { auth0 } from "@/lib/auth0"
export default async function handler(
req: NextApiRequest,
res: NextApiResponse<{ message: string }>
) {
const token = await auth0.getAccessToken(req)
// call external API with token...
res.status(200).json({ message: "Success!" })
}
Hooks
The SDK exposes hooks to enable you to provide custom logic that would be run at certain lifecycle events.
beforeSessionSaved
The beforeSessionSaved
hook is run right before the session is persisted. It provides a mechanism to modify the session claims before persisting them.
The hook recieves a SessionData
object and must return a Promise that resolves to a SessionData
object: (session: SessionData) => Promise<SessionData>
. For example:
export const auth0 = new Auth0Client({
async beforeSessionSaved(session) {
return {
...session,
user: {
...session.user,
foo: "bar",
},
}
},
})
onCallback
The onCallback
hook is run once the user has been redirected back from Auth0 to your application with either an error or the authorization code which will be verified and exchanged.
The onCallback
hook receives 3 parameters:
error
: the error returned from Auth0 or when attempting to complete the transaction. This will benull
if the transaction was completed successfully.context
: provides context on the transaction that initiated the transaction.session
: theSessionData
that will be persisted once the transaction completes successfully. This will benull
if there was an error.
The hook must return a Promise that resolves to a NextResponse
.
For example, a custom onCallback
hook may be specified like so:
export const auth0 = new Auth0Client({
async onCallback(error, context, session) {
// redirect the user to a custom error page
if (error) {
return NextResponse.redirect(
new URL(`/error?error=${error.message}`, process.env.APP_BASE_URL)
)
}
// complete the redirect to the provided returnTo URL
return NextResponse.redirect(
new URL(context.returnTo || "/", process.env.APP_BASE_URL)
)
},
})
Session configuration
The session configuration can be managed by specifying a session
object when configuring the Auth0 client, like so:
export const auth0 = new Auth0Client({
session: {
rolling: true,
absoluteDuration: 60 * 60 * 24 * 30, // 30 days in seconds
inactivityDuration: 60 * 60 * 24 * 7, // 7 days in seconds
},
})
| Option | Type | Description |
| ------------------ | --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| rolling | boolean
| When enabled, the session will continue to be extended as long as it is used within the inactivity duration. Once the upper bound, set via the absoluteDuration
, has been reached, the session will no longer be extended. Default: true
. |
| absoluteDuration | number
| The absolute duration after which the session will expire. The value must be specified in seconds. Default: 30 days
. |
| inactivityDuration | number
| The duration of inactivity after which the session will expire. The value must be specified in seconds. Default: 7 days
. |
Database sessions
By default, the user's sessions are stored in encrypted cookies. You may choose to persist the sessions in your data store of choice.
To do this, you can provide a SessionStore
implementation as an option when configuring the Auth0 client, like so:
export const auth0 = new Auth0Client({
sessionStore: {
async get(id) {
// query and return a session by its ID
},
async set(id, sessionData) {
// upsert the session given its ID and sessionData
},
async delete(id) {
// delete the session using its ID
},
async deleteByLogoutToken({ sid, sub }: { sid: string; sub: string }) {
// optional method to be implemented when using Back-Channel Logout
},
},
})
Back-Channel Logout
The SDK can be configured to listen to Back-Channel Logout events. By default, a route will be mounted /auth/backchannel-logout
which will verify the logout token and call the deleteByLogoutToken
method of your session store implementation to allow you to remove the session.
To use Back-Channel Logout, you will need to provide a session store implementation as shown in the Database sessions section above with the deleteByLogoutToken
implemented.
A LogoutToken
object will be passed as the parameter to deleteByLogoutToken
which will contain either a sid
claim, a sub
claim, or both.
Combining middleware
By default, the middleware does not protect any pages. It is used to mount the authentication routes and provide the necessary functionality for rolling sessions.
You can combine multiple middleware, like so:
export async function middleware(request: NextRequest) {
const authResponse = await auth0.middleware(request)
// if path starts with /auth, let the auth middleware handle it
if (request.nextUrl.pathname.startsWith("/auth")) {
return authResponse
}
// call any other middleware here
const someOtherResponse = await someOtherMiddleware(request)
// add any headers from the auth middleware to the response
for (const [key, value] of authResponse.headers) {
someOtherResponse.headers.set(key, value)
}
return someOtherResponse
}
For a complete example using next-intl
middleware, please see the examples/
directory of this repository.
Routes
The SDK mounts 6 routes:
/auth/login
: the login route that the user will be redirected to to start a initiate an authentication transaction/auth/logout
: the logout route that must be addedto your Auth0 application's Allowed Logout URLs/auth/callback
: the callback route that must be addedto your Auth0 application's Allowed Callback URLs/auth/profile
: the route to check the user's session and return their attributes/auth/access-token
: the route to check the user's session and return an access token (which will be automatically refreshed if a refresh token is available)/auth/backchannel-logout
: the route that will receive alogout_token
when a configured Back-Channel Logout initiator occurs