auth0-express

द्वारा auth0

एक्सप्रेस.जेएस वेब एप्लिकेशन में प्रमाणीकरण (लॉगिन, लॉगआउट, संरक्षित रूट) जोड़ते समय उपयोग करें - सत्र-आधारित प्रमाणीकरण के लिए express-openid-connect को एकीकृत करता है।

npx skills add https://github.com/auth0/agent-skills --skill auth0-express

Auth0 Express Integration

Add authentication to Express.js web applications using express-openid-connect.


Prerequisites

  • Express.js application
  • Auth0 account and application configured
  • If you don't have Auth0 set up yet, use the auth0-quickstart skill first

When NOT to Use

  • Single Page Applications - Use auth0-react, auth0-vue, or auth0-angular for client-side auth
  • Next.js applications - Use auth0-nextjs skill which handles both client and server
  • Mobile applications - Use auth0-react-native for React Native/Expo
  • Stateless APIs - Use JWT validation middleware instead of session-based auth
  • Microservices - Use JWT validation for service-to-service auth

Quick Start Workflow

1. Install SDK

npm install express-openid-connect dotenv

2. Configure Environment

For automated setup with Auth0 CLI, see Setup Guide for complete scripts.

For manual setup:

Create .env:

SECRET=<openssl-rand-hex-32>
BASE_URL=http://localhost:3000
CLIENT_ID=your-client-id
CLIENT_SECRET=your-client-secret
ISSUER_BASE_URL=https://your-tenant.auth0.com
AUDIENCE=https://your-api-identifier  # only required if calling external APIs (Step 3a)

Generate secret: openssl rand -hex 32

3. Configure Auth Middleware

Update your Express app (app.js or index.js):

require('dotenv').config();
const express = require('express');
const { auth, requiresAuth } = require('express-openid-connect');

const app = express();

// Configure Auth0 middleware
app.use(auth({
  authRequired: false,  // Don't require auth for all routes
  auth0Logout: true,    // Enable logout endpoint
  secret: process.env.SECRET,
  baseURL: process.env.BASE_URL,
  clientID: process.env.CLIENT_ID,
  issuerBaseURL: process.env.ISSUER_BASE_URL,
  clientSecret: process.env.CLIENT_SECRET
}));

app.listen(3000, () => {
  console.log('Server running on http://localhost:3000');
});

Calling external APIs? If you need an access token for a downstream API, you must add authorizationParams — see Step 3a below.

This automatically creates:

  • /login - Login endpoint
  • /logout - Logout endpoint
  • /callback - OAuth callback

3a. Configure Middleware for API Access (when calling external APIs)

When you need an access token for an external API, audience must go inside authorizationParams — putting it at the top level is silently ignored and no access token is issued.

// SDK auto-loads SECRET, BASE_URL, CLIENT_ID, ISSUER_BASE_URL, CLIENT_SECRET from env vars
app.use(auth({
  authRequired: false,
  auth0Logout: true,
  authorizationParams: {            // ← required for access tokens
    response_type: 'code',          // ← required: authorization code flow
    audience: process.env.AUDIENCE, // ← API identifier (never top-level)
    scope: 'openid profile email'
  }
}));

Then access the token in your route:

app.get('/api-call', requiresAuth(), async (req, res) => {
  const { access_token } = req.oidc.accessToken; // object, not a string
  const response = await fetch('https://your-api.com/data', {
    headers: { Authorization: `Bearer ${access_token}` }
  });
  res.json(await response.json());
});

4. Add Routes

// Public route
app.get('/', (req, res) => {
  res.send(req.oidc.isAuthenticated() ? 'Logged in' : 'Logged out');
});

// Protected route
app.get('/profile', requiresAuth(), (req, res) => {
  res.send(`
    <h1>Profile</h1>
    <p>Name: ${req.oidc.user.name}</p>
    <p>Email: ${req.oidc.user.email}</p>
    <pre>${JSON.stringify(req.oidc.user, null, 2)}</pre>
    <a href="/logout">Logout</a>
  `);
});

// Login/logout links
app.get('/', (req, res) => {
  res.send(`
    ${req.oidc.isAuthenticated() ? `
      <p>Welcome, ${req.oidc.user.name}!</p>
      <a href="/profile">Profile</a>
      <a href="/logout">Logout</a>
    ` : `
      <a href="/login">Login</a>
    `}
  `);
});

5. Test Authentication

Start your server:

node app.js

Visit http://localhost:3000 and test the login flow.


Detailed Documentation

  • Setup Guide - Automated setup scripts, environment configuration, Auth0 CLI usage
  • Integration Guide - Protected routes, sessions, API integration, error handling
  • API Reference - Complete middleware API, configuration options, request properties

Common Mistakes

MistakeFix
Forgot to add callback URL in Auth0 DashboardAdd /callback path to Allowed Callback URLs (e.g., http://localhost:3000/callback)
Missing or weak SECRETGenerate secure secret with openssl rand -hex 32 and store in .env as SECRET
Setting authRequired: true globallySet to false and use requiresAuth() middleware on specific routes
App created as SPA type in Auth0Must be Regular Web Application type for server-side auth
Session secret exposed in codeAlways use environment variables, never hardcode secrets
Wrong baseURL for productionUpdate BASE_URL to match your production domain
Not handling logout returnToAdd your domain to Allowed Logout URLs in Auth0 Dashboard
audience as a top-level config keyMove audience inside authorizationParams with response_type: 'code' and scope — top-level audience is silently ignored, no access token is issued
req.oidc.accessToken used as a stringIt is an object — destructure with const { access_token } = req.oidc.accessToken

Related Skills

  • auth0-quickstart - Basic Auth0 setup
  • auth0-migration - Migrate from another auth provider
  • auth0-mfa - Add Multi-Factor Authentication
  • auth0-cli - Manage Auth0 resources from the terminal

Quick Reference

Middleware Options:

  • authRequired - Require auth for all routes (default: false)
  • auth0Logout - Enable /logout endpoint (default: false)
  • secret - Session secret (required)
  • baseURL - Application URL (required)
  • clientID - Auth0 client ID (required)
  • issuerBaseURL - Auth0 tenant URL (required)

Request Properties:

  • req.oidc.isAuthenticated() - Check if user is logged in
  • req.oidc.user - User profile object
  • req.oidc.accessToken - Access token object ({ access_token, token_type, expires_in }); expires_in is seconds remaining. Destructure with const { access_token } = req.oidc.accessToken. Also exposes isExpired() and refresh() methods. Only populated when authorizationParams with audience + response_type: 'code' is configured
  • req.oidc.idToken - ID token
  • req.oidc.refreshToken - Refresh token

Common Use Cases:

  • Protected routes → Use requiresAuth() middleware (see Step 4)
  • Check auth status → req.oidc.isAuthenticated()
  • Get user info → req.oidc.user
  • Call APIs → Integration Guide

References

auth0 की और Skills

acul-screen-generator
auth0
पूर्ण, ब्रांडेड Auth0 Advanced Custom Universal Login (ACUL) स्क्रीन कार्यान्वयन उत्पन्न करता है, जो React या Vanilla JS SDK का उपयोग करता है। जब कोई डेवलपर पूछता है तो उपयोग करें…
official
auth0-android
auth0
Android अनुप्रयोगों (Kotlin/Java) में Web Auth, बायोमेट्रिक-संरक्षित क्रेडेंशियल्स और MFA के साथ प्रमाणीकरण जोड़ते समय उपयोग करें - एकीकृत करता है…
official
auth0-angular
auth0
एंगुलर एप्लिकेशन में रूट गार्ड और HTTP इंटरसेप्टर के साथ प्रमाणीकरण जोड़ते समय उपयोग करें - SPA के लिए @auth0/auth0-angular SDK को एकीकृत करता है
official
auth0-aspnetcore-api
auth0
ASP.NET Core Web API एंडपॉइंट्स को JWT Bearer टोकन सत्यापन, स्कोप/अनुमति जांच, या स्टेटलेस प्रमाणीकरण से सुरक्षित करते समय उपयोग करें - एकीकृत करता है…
official
auth0-cli
auth0
Auth0 CLI कमांड्स के लिए संदर्भ — ऐप्स, एपीआई, उपयोगकर्ता, भूमिकाएँ, संगठन, क्रियाएँ, लॉग, कस्टम डोमेन, यूनिवर्सल-लॉगिन, टेराफॉर्म, रॉ एपीआई मोड, और --json…
official
auth0-expo
auth0
एक्सपो (React Native) मोबाइल ऐप्स में प्रमाणीकरण जोड़ते समय उपयोग करें — लॉगिन, लॉगआउट, उपयोगकर्ता सत्र, संरक्षित रूट, बायोमेट्रिक्स, या टोकन प्रबंधन। एकीकृत करता है…
official
auth0-fastapi-api
auth0
जब FastAPI API एंडपॉइंट्स को JWT Bearer टोकन सत्यापन, स्कोप/अनुमति जांच, या स्टेटलेस प्रमाणीकरण से सुरक्षित करना हो - REST के लिए auth0-fastapi-api को एकीकृत करता है…
official
auth0-fastify
auth0
फास्टिफाई वेब एप्लिकेशनों में प्रमाणीकरण (लॉगिन, लॉगआउट, संरक्षित रूट) जोड़ते समय उपयोग करें - सत्र-आधारित प्रमाणीकरण के लिए @auth0/auth0-fastify को एकीकृत करता है। के लिए…
official