惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
A
About on SuperTechFans
博客园 - Franky
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
云风的 BLOG
云风的 BLOG
B
Blog
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
Martin Fowler
Martin Fowler
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 叶小钗
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
Last Week in AI
Last Week in AI
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
爱范儿
爱范儿
V
V2EX
G
Google Developers Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Adding user authentication to a Next.js app with Whop OAuth
Doğukan Karakaş · 2026-06-12 · via DEV Community

I wrote a tutorial on adding user authentication to an existing Next.js app using Whop OAuth. The TL;DR: drop Sign in with Whop into any Next.js app, skip credential storage, password hashing, email verification, and reset flows. Whop handles those.

Demo: https://nextjs-whop-oauth-demo.vercel.app/

The full integration is a few files: a couple of new modules under lib/, three route handlers under app/api/auth/, and a proxy.ts at the project root. The flow is OAuth 2.0 + PKCE; the session lives in an encrypted httpOnly cookie via iron-session. Here is how it comes together.

What you set up first

Two packages: iron-session for the encrypted session cookie, zod for env and response validation.

npm install iron-session zod

Five env vars: WHOP_CLIENT_ID, WHOP_CLIENT_SECRET, WHOP_SANDBOX, SESSION_SECRET (32+ chars; openssl rand -base64 32 does it), and NEXT_PUBLIC_APP_URL. Plus a Whop app from Sandbox.Whop.com with two redirect URIs (one for localhost, one for production), the openid, profile, and email scopes selected, and the oauth:token_exchange permission added on the Permissions tab.

Env validation with zod

I validate everything at first call (not at import time) so next build does not fail in environments where runtime env vars are not present:

import { z } from "zod";

const envSchema = z.object({
  WHOP_CLIENT_ID: z.string().startsWith("app_"),
  WHOP_CLIENT_SECRET: z.string().min(1),
  WHOP_SANDBOX: z.string().optional().transform((v) => v === "true"),
  SESSION_SECRET: z.string().min(32),
  NEXT_PUBLIC_APP_URL: z.string().url(),
});

let cached: z.infer<typeof envSchema> | null = null;

export function getEnv() {
  if (cached) return cached;
  cached = envSchema.parse({
    WHOP_CLIENT_ID: process.env.WHOP_CLIENT_ID,
    WHOP_CLIENT_SECRET: process.env.WHOP_CLIENT_SECRET,
    WHOP_SANDBOX: process.env.WHOP_SANDBOX,
    SESSION_SECRET: process.env.SESSION_SECRET,
    NEXT_PUBLIC_APP_URL: process.env.NEXT_PUBLIC_APP_URL,
  });
  return cached;
}

getEnv() parses once, caches the result, and gives every route handler a single typed source of truth.

The auth flow, end to end

Six things happen between the click and the dashboard render:

  1. The user clicks the link to /api/auth/login.
  2. The login route generates a PKCE verifier, a random state, and a random nonce, stores all three in a short lived httpOnly cookie, and redirects to https://api.whop.com/oauth/authorize?... (or the sandbox base when WHOP_SANDBOX=true).
  3. Whop shows the consent screen and redirects to /api/auth/callback?code=...&state=....
  4. The callback route reads the PKCE cookie, verifies the returned state matches, and POSTs to /oauth/token with the code, code_verifier, and client_secret.
  5. The route checks that the id_token echoes the nonce, then uses the returned access_token to call /oauth/userinfo and read the user profile.
  6. The route writes the user profile and tokens into an iron-session cookie, clears the PKCE cookie, and redirects to /dashboard.

Every step runs server side. Whop's tokens never touch the browser; the session lives in an encrypted httpOnly cookie that client side JavaScript cannot read.

The nonce gotcha

The OAuth scope requests openid, profile, and email. Adding openid turns this into an OpenID Connect flow, which means Whop requires a nonce parameter on the authorize URL. Omit it and Whop returns nonce is required before the callback ever fires.

The login route generates the nonce alongside the state and code_verifier, stashes it in the PKCE cookie, and validates it back from the id_token in the callback.

This is the single most common thing that breaks first run integrations. Worth knowing before you spend an hour reading the OAuth spec wondering what you missed.

Route protection in two layers

Protected pages check authentication in two places:

  • A middleware proxy (proxy.ts at the project root) matches protected routes by path and redirects unauthenticated requests to /api/auth/login.
  • A server side requireUser() helper reads the session inside server components and either returns the user or redirects.

Having both layers means a request that bypasses the middleware still gets caught by the component level check. And the helper makes typed user data available without each page reaching for the session manually.

Sandbox to production is one env var

The OAuth helper switches base URLs based on WHOP_SANDBOX:

function getBaseUrl(): string {
  return getEnv().WHOP_SANDBOX
    ? "https://sandbox-api.whop.com"
    : "https://api.whop.com";
}

Going to production means three things: create a production Whop app on whop.com (not the sandbox), update the env vars with the production client ID and secret, and remove WHOP_SANDBOX (or set it to false). Redirect URIs registered on the production app need to match exactly.

Links

If you are adding auth to an existing Next.js app and want to skip the password machinery entirely, this is the pattern.