auth0-nextjs
auth0/agent-skills
Add Auth0 authentication to Next.js apps with login, logout, and protected routes.
What is auth0-nextjs?
Integrates Auth0 identity management into Next.js applications using @auth0/nextjs-auth0 SDK. Supports both App Router and Pages Router, handling session management, middleware, and user context. Use when adding login/logout flows or protecting routes in Next.js 13+.
- Automatic login/logout endpoints at /auth/login, /auth/logout, /auth/callback
- Session management and user context via useUser() hook and getSession()
- Middleware-based route protection and OAuth callback handling
- Support for both App Router and Pages Router architectures
- Optional Auth0Provider wrapper for server-side user context
- Environment-based configuration with Auth0 domain and credentials
How to install auth0-nextjs
npx skills add https://github.com/auth0/agent-skills --skill auth0-nextjs- Next.js 13 or later (App Router or Pages Router)
- Auth0 account with application configured
- Environment variables: AUTH0_DOMAIN, AUTH0_CLIENT_ID, AUTH0_CLIENT_SECRET, AUTH0_SECRET, APP_BASE_URL
How to use auth0-nextjs
- 1.Run npm install @auth0/nextjs-auth0
- 2.Create .env.local with Auth0 credentials and APP_BASE_URL
- 3.Create lib/auth0.ts with Auth0Client instance (or src/lib/auth0.ts if using src/ directory)
- 4.Create middleware.ts or proxy.ts at project root (or src/) with auth0.middleware() call
- 5.Optionally wrap app in Auth0Provider in layout.tsx or _app.tsx for server-side user context
- 6.Add useUser() hook to client components to display login/logout UI
- 7.Test login flow by visiting /auth/login in development
Use cases
- Add login/logout buttons to a Next.js marketing site
- Protect admin or dashboard routes behind authentication
- Implement user profiles with Auth0 user data
- Migrate existing Next.js app from another auth provider to Auth0
- Set up OAuth callback handling for multi-tenant applications
- Next.js full-stack developers
- Teams using Auth0 as identity provider
- Developers building authenticated web applications
- Projects requiring session-based authentication
auth0-nextjs FAQ
Next.js 13 and later. Both App Router and Pages Router are supported. Next.js 16 offers middleware.ts or proxy.ts options.
No, it's optional in v4. Only use it if you want to pass initial user data during server rendering to useUser().
Both work in Next.js 16. middleware.ts is standard; proxy.ts is an alternative. Choose one—they serve the same purpose.
Place lib/auth0.ts at src/lib/auth0.ts and middleware.ts or proxy.ts at src/middleware.ts or src/proxy.ts.
AUTH0_SECRET (32-char generated secret), APP_BASE_URL, AUTH0_DOMAIN, AUTH0_CLIENT_ID, and AUTH0_CLIENT_SECRET. Store in .env.local and add to .gitignore.
Full instructions (SKILL.md)
Source of truth, from auth0/agent-skills.
name: auth0-nextjs description: > Use when adding Auth0 login, logout, protected pages, or middleware to a Next.js application. Supports App Router and Pages Router with @auth0/nextjs-auth0 — use even if the user says "add login to my Next.js app" or "protect my Next.js routes". license: Apache-2.0 metadata: author: Auth0 support@auth0.com version: '1.0.0' openclaw: emoji: "\U0001F510" homepage: https://github.com/auth0/agent-skills
Auth0 Next.js Integration
Add authentication to Next.js applications using @auth0/nextjs-auth0. Supports both App Router and Pages Router.
Prerequisites
- Next.js 13+ application (App Router or Pages Router)
- Auth0 account and application configured
- If you don't have Auth0 set up yet, use the
auth0-quickstartskill first
When NOT to Use
- Client-side only React apps - Use
auth0-reactfor Vite/CRA SPAs - React Native mobile apps - Use
auth0-react-nativefor iOS/Android - Non-Next.js frameworks - Use framework-specific SDKs (Express, Vue, Angular, etc.)
- Stateless APIs only - Use JWT validation middleware if you don't need session management
Quick Start Workflow
1. Install SDK
npm install @auth0/nextjs-auth0
2. Configure Environment
For automated setup with Auth0 CLI, see Setup Guide for complete scripts.
For manual setup:
Create .env.local:
AUTH0_SECRET=<generate-a-32-character-secret>
APP_BASE_URL=http://localhost:3000
AUTH0_DOMAIN=your-tenant.auth0.com
AUTH0_CLIENT_ID=your-client-id
AUTH0_CLIENT_SECRET=your-client-secret
Generate secret: openssl rand -hex 32
Important: Add .env.local to .gitignore
3. Create Auth0 Client and Middleware
Detect project structure first: Check whether the project uses a src/ directory (i.e. src/app/ or src/pages/ exists). This determines where to place files:
- With
src/:src/lib/auth0.ts,src/middleware.ts(orsrc/proxy.tsfor Next.js 16) - Without
src/:lib/auth0.ts,middleware.ts(orproxy.tsfor Next.js 16)
Create lib/auth0.ts (or src/lib/auth0.ts if using the src/ convention):
import { Auth0Client } from '@auth0/nextjs-auth0/server';
export const auth0 = new Auth0Client({
domain: process.env.AUTH0_DOMAIN!,
clientId: process.env.AUTH0_CLIENT_ID!,
clientSecret: process.env.AUTH0_CLIENT_SECRET!,
secret: process.env.AUTH0_SECRET!,
appBaseUrl: process.env.APP_BASE_URL!,
});
Middleware Configuration (Next.js 15 vs 16):
Next.js 15 - Create middleware.ts (at project root, or src/middleware.ts if using src/):
import { NextRequest } from 'next/server';
import { auth0 } from '@/lib/auth0';
export async function middleware(request: NextRequest) {
return await auth0.middleware(request);
}
export const config = {
matcher: [
'/((?!_next/static|_next/image|favicon.ico|sitemap.xml|robots.txt).*)',
],
};
Next.js 16 - You have two options:
Option 1: Use middleware.ts (same as Next.js 15, same src/ placement rules):
import { NextRequest } from 'next/server';
import { auth0 } from '@/lib/auth0';
export async function middleware(request: NextRequest) {
return await auth0.middleware(request);
}
export const config = {
matcher: [
'/((?!_next/static|_next/image|favicon.ico|sitemap.xml|robots.txt).*)',
],
};
Option 2: Use proxy.ts (at project root, or src/proxy.ts if using src/):
import { NextRequest } from 'next/server';
import { auth0 } from '@/lib/auth0';
export async function proxy(request: NextRequest) {
return await auth0.middleware(request);
}
export const config = {
matcher: [
'/((?!_next/static|_next/image|favicon.ico|sitemap.xml|robots.txt).*)',
],
};
This automatically creates endpoints:
/auth/login- Login/auth/logout- Logout/auth/callback- OAuth callback/auth/profile- User profile
4. Add User Context (Optional)
Note: In v4, wrapping with <Auth0Provider> is optional. Only needed if you want to pass an initial user during server rendering to useUser().
App Router - Optionally wrap app in app/layout.tsx:
import { Auth0Provider } from '@auth0/nextjs-auth0/client';
import { auth0 } from '@/lib/auth0';
export default async function RootLayout({ children }: { children: React.ReactNode }) {
const session = await auth0.getSession();
return (
<html>
<body>
<Auth0Provider user={session?.user}>{children}</Auth0Provider>
</body>
</html>
);
}
Pages Router - Optionally wrap app in pages/_app.tsx:
import { Auth0Provider } from '@auth0/nextjs-auth0/client';
import type { AppProps } from 'next/app';
export default function App({ Component, pageProps }: AppProps) {
return (
<Auth0Provider user={pageProps.user}>
<Component {...pageProps} />
</Auth0Provider>
);
}
5. Add Authentication UI
Client Component (works in both routers):
'use client'; // Only needed for App Router
import { useUser } from '@auth0/nextjs-auth0/client';
export default function Profile() {
const { user, isLoading } = useUser();
if (isLoading) return <div>Loading...</div>;
if (user) {
return (
<div>
<img src={user.picture} alt={user.name} />
<h2>Welcome, {user.name}!</h2>
<a href="/auth/logout">Logout</a>
</div>
);
}
return <a href="/auth/login">Login</a>;
}
6. Test Authentication
Start your dev server:
npm run dev
Visit http://localhost:3000 and test the login flow.
Detailed Documentation
- Setup Guide - Automated setup scripts, environment configuration, Auth0 CLI usage
- Integration Guide - Server-side auth, protected routes, API routes, middleware
- API Reference - Complete SDK API, hooks, helpers, session management
Common Mistakes
| Mistake | Fix |
|---|---|
| Using v3 environment variables | v4 uses APP_BASE_URL and AUTH0_DOMAIN (not AUTH0_BASE_URL or AUTH0_ISSUER_BASE_URL) |
| Forgot to add callback URL in Auth0 Dashboard | Add /auth/callback to Allowed Callback URLs (e.g., http://localhost:3000/auth/callback) |
| Missing middleware configuration | v4 requires middleware to mount auth routes - create middleware.ts (Next.js 15+16) or proxy.ts (Next.js 16 only) with auth0.middleware() |
| Wrong route paths | v4 uses /auth/login not /api/auth/login - routes drop the /api prefix |
| Missing or weak AUTH0_SECRET | Generate secure secret with openssl rand -hex 32 and store in .env.local |
| Using .env instead of .env.local | Next.js requires .env.local for local secrets, and .env.local should be in .gitignore |
| App created as SPA type in Auth0 | Must be Regular Web Application type for Next.js |
| Using removed v3 helpers | v4 removed withPageAuthRequired and withApiAuthRequired - use getSession() instead |
| Using useUser in Server Component | useUser is client-only, use auth0.getSession() for Server Components |
| AUTH0_DOMAIN includes https:// | v4 AUTH0_DOMAIN should be just the domain (e.g., example.auth0.com), no scheme |
Related Skills
auth0-quickstart- Basic Auth0 setupauth0-migration- Migrate from another auth providerauth0-mfa- Add Multi-Factor Authenticationauth0-cli- Manage Auth0 resources from the terminal
Quick Reference
V4 Setup:
- Detect
src/convention: check ifsrc/app/orsrc/pages/exists — place all files insidesrc/if so - Create
lib/auth0.ts(orsrc/lib/auth0.ts) withAuth0Clientinstance - Create middleware configuration (required):
- Next.js 15:
middleware.ts(orsrc/middleware.ts) withmiddleware()function - Next.js 16:
middleware.tswithmiddleware()ORproxy.tswithproxy()function (samesrc/rules)
- Next.js 15:
- Optional: Wrap with
<Auth0Provider>for SSR user
Client-Side Hooks:
useUser()- Get user in client componentsuser- User profile objectisLoading- Loading state
Server-Side Methods:
auth0.getSession()- Get session in Server Components/API routes/middlewareauth0.getAccessToken()- Get access token for calling APIs
Common Use Cases:
- Login/Logout links → Use
/auth/loginand/auth/logoutpaths (see Step 5) - Protected pages (App Router) → Integration Guide
- Protected pages (Pages Router) → Integration Guide
- API routes with auth → Integration Guide
- Middleware protection → Integration Guide
References
Related skills
More from auth0/agent-skills and the wider catalog.

auth0-quickstart
Detect your framework and route to the right Auth0 authentication setup workflow.

auth0-react
Add Auth0 authentication to React SPAs with login, logout, protected routes, and user sessions.

auth0-react-native
>

auth0-vue
>

xiaohongshu-skills
|

capability-evolver
Self-evolution engine for AI agents that analyzes runtime history and autonomously applies protocol-constrained improvements via local Proxy mailbox.