express-oauth2-jwt-bearer

द्वारा auth0

Express या Node.js API में Auth0 टोकन सत्यापन जोड़ते समय उपयोग करें - JWT Bearer के साथ Node.js API एंडपॉइंट को सुरक्षित करने के लिए express-oauth2-jwt-bearer SDK को एकीकृत करता है…

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

Node OAuth2 JWT Bearer Integration

The express-oauth2-jwt-bearer package provides Express middleware for validating Auth0 JWT Bearer access tokens. It handles token extraction, signature verification, audience and issuer validation, and expiry checks per RFC 6750 — letting you focus on business logic rather than JWT parsing.

Agent instruction: Before providing SDK setup instructions, fetch the latest release version by running:

gh api repos/auth0/node-oauth2-jwt-bearer/releases/latest --jq '.tag_name'

Use the returned version in all package.json dependency lines instead of any hardcoded version below.

Prerequisites

  • Node.js 18+ (20+ recommended; required for bootstrap script automation)
  • Express 4.x or 5.x
  • npm or yarn
  • An Auth0 account with a configured API (Resource Server)
  • Auth0 CLI (for automatic setup): npm install -g @auth0/auth0-cli

When NOT to Use

Use CaseRecommended Skill
Building a server-side web app with login UI (Express sessions)auth0-express
Building a Next.js app with server-side authauth0-nextjs
Building a React/Angular/Vue SPAauth0-react, auth0-angular, auth0-vue
Building a React Native or mobile appauth0-react-native, auth0-android, auth0-swift
ASP.NET Core Web APIauth0-aspnetcore-api
Go API with JWT middlewarego-jwt-middleware
Python API (Flask/FastAPI)auth0-api-python
Node.js API using the older express-jwt packageexpress-jwt

Quick Start Workflow

Agent instruction: Follow these steps to integrate express-oauth2-jwt-bearer into the user's Node.js API project.

  1. Fetch latest version (see instruction above).

  2. Install the SDK:

    npm install express-oauth2-jwt-bearer
    
  3. Configure Auth0 — follow references/setup.md. If the user already provided their Auth0 Domain and API Audience in the prompt, write them to a .env file as ISSUER_BASE_URL (the full issuer URL, including https://) and AUDIENCE — the SDK reads these automatically. Skip the bootstrap script and do NOT call AskUserQuestion to re-confirm. Never hardcode the domain or audience as literal strings (or || fallback defaults) in server.js / app.js — they belong in .env only. Otherwise, offer automatic setup via bootstrap script or manual setup.

  4. Set up middleware — first create a .env file with the Auth0 values, then load it and add the middleware. express-oauth2-jwt-bearer reads ISSUER_BASE_URL and AUDIENCE from the environment automatically, so auth() needs no arguments:

    # .env
    ISSUER_BASE_URL=https://your-tenant.us.auth0.com
    AUDIENCE=https://your-api-identifier
    
    import 'dotenv/config'; // load .env before the SDK reads process.env
    import { auth } from 'express-oauth2-jwt-bearer';
    
    // Reads ISSUER_BASE_URL and AUDIENCE from the environment — no config needed
    const checkJwt = auth();
    
    app.use(checkJwt); // apply globally, or per-route
    

    Keep the issuer and audience in .env — do not inline literal values or pass them as arguments here.

  5. Protect endpoints — apply middleware globally or to specific routes:

    // Global protection
    app.use(checkJwt);
    
    // Or per-route
    app.get('/api/private', checkJwt, (req, res) => {
      res.json({ sub: req.auth.payload.sub });
    });
    
  6. Add RBAC (optional) — use requiredScopes() or claimIncludes() for permission-based access:

    import { auth, requiredScopes, claimIncludes } from 'express-oauth2-jwt-bearer';
    
    app.get('/api/messages', checkJwt, requiredScopes('read:messages'), (req, res) => {
      res.json({ messages: [] });
    });
    

    Important: requiredScopes accepts a single argument — a space-separated string or an array. Do NOT pass multiple string arguments: requiredScopes('read:msg', 'write:msg') silently ignores everything after the first. Use requiredScopes('read:msg write:msg') or requiredScopes(['read:msg', 'write:msg']) instead.

  7. Verify the integration — build and test:

    node server.js
    curl http://localhost:3000/api/private         # should return 401
    curl -H "Authorization: Bearer <token>" http://localhost:3000/api/private  # should return 200
    
  8. Failcheck: If the server fails to start or tokens are rejected unexpectedly, check references/api.md for common issues. After 5-6 failed iterations, use AskUserQuestion to ask the user for more details about their environment.

Detailed Documentation

  • Setup Guide — Auth0 API registration, .env configuration, bootstrap script for automated setup, and secret management
  • Integration Patterns — Protected endpoints, RBAC with scopes and claims, DPoP, CORS setup, error handling, and testing with curl
  • API Reference & Testing — Full configuration options, claims reference, complete code example, testing checklist, and common issues

Common Mistakes

MistakeSymptomFix
Created an Application instead of an API in Auth0 DashboardToken validation fails; wrong audienceCreate a new API (Resource Server) in Auth0 Dashboard → APIs
Audience doesn't match API identifier exactly401 Unauthorized — "Audience mismatch"Copy the exact API Identifier string from Auth0 Dashboard → APIs
ISSUER_BASE_URL missing the https:// schemeError: Invalid URL at startupISSUER_BASE_URL must be the full issuer URL: https://your-tenant.us.auth0.com
Checking scope claim instead of permissions for RBAC403 always returned or permissions ignoredUse requiredScopes() for scope-based RBAC; use claimIncludes('permissions', 'read:data') for Auth0 RBAC permission claims
CORS not configured before auth middlewarePreflight OPTIONS requests return 401Add cors() middleware before auth() in the middleware chain
.env file not loadedundefined for domain/audienceAdd import 'dotenv/config' at the top of the entry file
Hardcoded domain/audience in source (incl. process.env.X || 'literal' fallbacks)Secrets committed to source; fails security reviewPut values in .env (ISSUER_BASE_URL / AUDIENCE) and let auth() read them automatically — no literal fallbacks
req.auth is undefinedTypeError: Cannot read properties of undefinedVerify checkJwt middleware runs before the handler

Related Skills

Quick Reference

Core Middleware

FunctionDescriptionReturns
auth(options?)JWT Bearer validation middlewareHandler — 401 if token invalid/missing
requiredScopes(scopes)Validates token has all required scopesHandler — 403 if scopes missing
scopeIncludesAny(scopes)Validates token has at least one scopeHandler — 403 if no match
claimEquals(claim, value)Validates a claim equals a valueHandler — 401 if mismatch
claimIncludes(claim, ...values)Validates claim includes all valuesHandler — 401 if incomplete
claimCheck(fn, desc?)Custom claim validation functionHandler — 401 if fn returns false

Configuration Options

OptionTypeDescription
issuerBaseURLstringFull issuer URL with https://. Optional — defaults to the ISSUER_BASE_URL env var
audiencestringAPI Identifier from Auth0 Dashboard. Optional — defaults to the AUDIENCE env var
tokenSigningAlgstringSigning algorithm (default: RS256; use HS256 for symmetric)
authRequiredbooleanSet false to make authentication optional (default: true)
clockTolerancenumberClock skew tolerance in seconds (no default; undefined unless set)
dpopDPoPOptionsDPoP configuration (see integration.md)

Environment Variables

VariableDescription
ISSUER_BASE_URLFull issuer URL with https://, e.g. https://your-tenant.us.auth0.com (auto-detected by SDK)
AUDIENCEAPI Identifier, e.g. https://your-api-identifier (auto-detected by SDK)

Request Object

After successful validation, req.auth contains:

req.auth.payload    // Decoded JWT payload (sub, iss, aud, exp, permissions, etc.)
req.auth.header     // JWT header (alg, typ, kid)
req.auth.token      // Raw JWT string

SDK Architecture

The node-oauth2-jwt-bearer monorepo contains three packages:

PackagePurpose
express-oauth2-jwt-bearerMain package. Express middleware for JWT Bearer validation. Published to npm.
access-token-jwtLow-level JWT verification utilities (used internally).
oauth2-bearerRFC 6750 Bearer token extraction (used internally).

In practice, you only install and import express-oauth2-jwt-bearer.

Auth Flow Comparison

Auth PatternSDKWhen to Use
JWT Bearer (stateless)express-oauth2-jwt-bearerAPIs called by SPAs, mobile apps, M2M clients
Session-based (stateful)@auth0/express-openid-connectWeb apps with login UI and server-side sessions

Testing Quick Reference

# Get test token from Auth0 Dashboard → APIs → your API → Test tab
# Copy the token, then:

# 1. Verify 401 on protected route (no token)
curl -v http://localhost:3000/api/private

# 2. Verify 200 with valid token
curl -H "Authorization: Bearer <paste-token-here>" http://localhost:3000/api/private

# 3. Verify 403 with valid token but missing scope
curl -H "Authorization: Bearer <paste-token-here>" http://localhost:3000/api/admin

# 4. Verify CORS preflight
curl -v -X OPTIONS http://localhost:3000/api/private \
  -H "Origin: http://localhost:5173" \
  -H "Access-Control-Request-Method: GET" \
  -H "Access-Control-Request-Headers: Authorization"

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-express
auth0
एक्सप्रेस.जेएस वेब एप्लिकेशन में प्रमाणीकरण (लॉगिन, लॉगआउट, संरक्षित रूट) जोड़ते समय उपयोग करें - सत्र-आधारित प्रमाणीकरण के लिए express-openid-connect को एकीकृत करता है।
official
auth0-fastapi-api
auth0
जब FastAPI API एंडपॉइंट्स को JWT Bearer टोकन सत्यापन, स्कोप/अनुमति जांच, या स्टेटलेस प्रमाणीकरण से सुरक्षित करना हो - REST के लिए auth0-fastapi-api को एकीकृत करता है…
official