Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Malware / Trojaner / VirenAI Agents Are Becoming a New Malware Distribution Channel(23.09.2026 um 09:44 Uhr)
Sichere ProgrammierungBuilding In-Browser Private Tools: When the Server Is the Liability(23.09.2026 um 08:54 Uhr)
Sichere ProgrammierungYour Order Fulfillment Workflow Is One 24-Hour Wait Away From Chaos(23.09.2026 um 08:54 Uhr)
Sichere Programmierungflet media library(23.09.2026 um 08:54 Uhr)
Sichere ProgrammierungRunning Lightdash on Snowpark Container Services(23.09.2026 um 08:55 Uhr)
Sichere ProgrammierungThe Impossible Filter Gallery Transition in CSS Only(23.09.2026 um 08:59 Uhr)
Sichere ProgrammierungVerifiable Data > Claimed Data: What i'm Trying to do with Ori's List(23.09.2026 um 09:08 Uhr)
Malware / Trojaner / VirenAI Agents Are Becoming a New Malware Distribution Channel(23.09.2026 um 09:44 Uhr)
Sichere ProgrammierungBuilding In-Browser Private Tools: When the Server Is the Liability(23.09.2026 um 08:54 Uhr)
Sichere ProgrammierungYour Order Fulfillment Workflow Is One 24-Hour Wait Away From Chaos(23.09.2026 um 08:54 Uhr)
Sichere Programmierungflet media library(23.09.2026 um 08:54 Uhr)
Sichere ProgrammierungRunning Lightdash on Snowpark Container Services(23.09.2026 um 08:55 Uhr)
Sichere ProgrammierungThe Impossible Filter Gallery Transition in CSS Only(23.09.2026 um 08:59 Uhr)
Sichere ProgrammierungVerifiable Data > Claimed Data: What i'm Trying to do with Ori's List(23.09.2026 um 09:08 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Adding user authentication to a Next.js app with Whop OAuth

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…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

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.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Adding user authentication to a Next.js app with Whop OAuth

Thematisch verwandte Begriffe: Adding, user, authentication, Nextjs · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-96258 | A vulnerability has been found in onSite internet GmbH Auktion NG Auktio…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick