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

推荐订阅源

博客园 - 三生石上(FineUI控件)
Blog — PlanetScale
Blog — PlanetScale
B
Blog
GbyAI
GbyAI
爱范儿
爱范儿
月光博客
月光博客
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
腾讯CDC
MyScale Blog
MyScale Blog
V
Visual Studio Blog
The Cloudflare Blog
Microsoft Security Blog
Microsoft Security Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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
Why Your Stripe Webhooks Are Silently Failing (And How to...
Jordan Sterc · 2026-04-26 · via DEV Community

The five mistakes that cause payment integrations to break in production — with no error messages to tell you why.


There’s a specific kind of dread that hits when you realize your payment system has been silently failing. Users paid. Stripe processed the charge. Your database still shows pending. You don’t know how long it’s been broken.

Stripe webhooks are how your server learns about events — payments succeeded, subscriptions renewed, cards expired. They’re asynchronous, they retry on failure, they can arrive out of order, and they can arrive multiple times. Most payment integration bugs don’t come from the Stripe API itself. They come from webhook handlers that look correct but aren’t.

Here are the five mistakes that cause Stripe webhooks to fail silently in production — and exactly how to fix each one.


1. You’re Verifying the Wrong Body

This is the most common cause of signature verification failures, and it produces the most confusing error message: No signatures found matching the expected signature for payload.

The problem: Express (and most frameworks) parse the request body before your handler runs. When you call stripe.webhooks.constructEvent() with req.body, you’re passing a JavaScript object that’s been serialized back to a string — and that re-serialized string doesn’t match what Stripe actually sent.

// Wrong — re-serializes differently than what Stripe sent
const event = stripe.webhooks.constructEvent(
  JSON.stringify(req.body),
  req.headers['stripe-signature'],
  process.env.STRIPE_WEBHOOK_SECRET
);

// Right — use the raw bytes Stripe actually sent
const event = stripe.webhooks.constructEvent(
  req.rawBody,
  req.headers['stripe-signature'],
  process.env.STRIPE_WEBHOOK_SECRET
);

Enter fullscreen mode Exit fullscreen mode

To get req.rawBody in Express, you need to configure body parsing to save it:

app.use(
  express.raw({ type: 'application/json' })
);

Enter fullscreen mode Exit fullscreen mode

Or if you need JSON parsing elsewhere:

app.use((req, res, next) => {
  if (req.originalUrl === '/webhooks/stripe') {
    express.raw({ type: 'application/json' })(req, res, next);
  } else {
    express.json()(req, res, next);
  }
});

Enter fullscreen mode Exit fullscreen mode

In Next.js, you need to disable the default body parser for the webhook route:

export const config = {
  api: {
    bodyParser: false,
  },
};

Enter fullscreen mode Exit fullscreen mode


2. You’re Using the Wrong Signing Secret

Stripe has separate signing secrets for test mode and live mode. They’re different values. If your production environment has the test webhook secret in STRIPE_WEBHOOK_SECRET, every signature verification fails — silently, with no indication of which secret is wrong.

Checklist:

  • Test mode secret starts with whsec_ — check your Stripe Dashboard → Developers → Webhooks → your endpoint → Signing secret
  • Live mode secret is a different value in a different section of the dashboard
  • Your production environment variables must contain the live mode secret
  • Your staging/development environment should use the test mode secret

If you’re using the Stripe CLI for local development (stripe listen --forward-to localhost:3000/webhooks), the CLI generates its own temporary signing secret that’s different from both — print it with stripe listen --print-secret.


3. You’re Not Handling Duplicate Events

Stripe guarantees at-least-once delivery — never exactly-once. The same event can arrive multiple times. If your webhook handler charges a customer, sends a confirmation email, or provisions access, and it runs twice on the same event, you have a real problem.

The fix is idempotency: check if you’ve already processed an event before acting on it.

app.post('/webhooks/stripe', express.raw({ type: 'application/json' }), async (req, res) => {
  const event = stripe.webhooks.constructEvent(
    req.body,
    req.headers['stripe-signature'],
    process.env.STRIPE_WEBHOOK_SECRET
  );

  // Check if we've already processed this event
  const existing = await db.query(
    'SELECT id FROM processed_webhook_events WHERE stripe_event_id = $1',
    [event.id]
  );

  if (existing.rows.length > 0) {
    return res.json({ received: true }); // Already handled
  }

  // Process the event
  await handleEvent(event);

  // Record that we've processed it
  await db.query(
    'INSERT INTO processed_webhook_events (stripe_event_id, type, processed_at) VALUES ($1, $2, NOW())',
    [event.id, event.type]
  );

  res.json({ received: true });
});

Enter fullscreen mode Exit fullscreen mode

The table you need:

CREATE TABLE processed_webhook_events (
  stripe_event_id TEXT PRIMARY KEY,
  type TEXT NOT NULL,
  processed_at TIMESTAMPTZ DEFAULT NOW()
);

Enter fullscreen mode Exit fullscreen mode


4. You’re Doing Too Much Work Synchronously

Stripe waits 10 seconds for a 2xx response. If your handler doesn’t respond in time, Stripe marks the delivery as failed and retries.

The mistake: putting heavy processing — sending emails, calling third-party APIs, generating PDFs, running background jobs — directly in the webhook handler before responding.

The pattern that breaks:

app.post('/webhooks/stripe', async (req, res) => {
  const event = stripe.webhooks.constructEvent(/* ... */);

  if (event.type === 'checkout.session.completed') {
    await sendWelcomeEmail(session.customer_email); // 3 seconds
    await createUserAccount(session);               // 2 seconds
    await provisionSubscriptionAccess(session);     // 4 seconds
    await notifySlack(session);                     // 2 seconds
    // Total: ~11 seconds — Stripe already marked this as failed
  }

  res.json({ received: true }); // Too late
});

Enter fullscreen mode Exit fullscreen mode

The fix — acknowledge immediately, process asynchronously:

app.post('/webhooks/stripe', express.raw({ type: 'application/json' }), async (req, res) => {
  const event = stripe.webhooks.constructEvent(
    req.body,
    req.headers['stripe-signature'],
    process.env.STRIPE_WEBHOOK_SECRET
  );

  // Respond immediately
  res.json({ received: true });

  // Process after response
  await queue.add('stripe-event', { event });
});

Enter fullscreen mode Exit fullscreen mode

Use any queue — Bull, BullMQ, Inngest, Trigger.dev, or a simple background process. The webhook handler’s only job is to verify the signature, acknowledge receipt, and hand off to the queue.


5. You’re Trusting the Event Payload Instead of Re-fetching

Stripe’s docs are clear about this but it’s easy to miss: don’t trust the data in the webhook payload. Fetch the object from the Stripe API directly.

Why: webhooks can be delayed. The data in a webhook that arrives 30 seconds after the event may already be stale. A subscription might have been updated, a payment might have been refunded, a dispute might have been resolved.

// Wrong — trusts the payload directly
if (event.type === 'customer.subscription.updated') {
  const subscription = event.data.object;
  await updateUserSubscription(subscription.status); // Could be stale
}

// Right — re-fetch from Stripe
if (event.type === 'customer.subscription.updated') {
  const subscription = await stripe.subscriptions.retrieve(
    event.data.object.id
  );
  await updateUserSubscription(subscription.status); // Always current
}

Enter fullscreen mode Exit fullscreen mode

This also protects against a subtle attack: a malicious actor constructing a fake event with manipulated data. Signature verification prevents this, but re-fetching adds defense in depth.


The Production Checklist

Before you ship your webhook handler:

  • [ ] Using raw request body (not parsed JSON) for signature verification
  • [ ] Production environment has the live mode signing secret
  • [ ] Idempotency implemented — event IDs stored and checked before processing
  • [ ] Handler responds within 10 seconds — heavy work in a queue
  • [ ] Re-fetching objects from the Stripe API instead of trusting payload data
  • [ ] Monitoring set up for failed deliveries in the Stripe Dashboard
  • [ ] Stripe’s webhook retry behavior tested with the Stripe CLI

Testing Without Deploying

The Stripe CLI makes local webhook testing trivial:

# Install
brew install stripe/stripe-cli/stripe

# Log in
stripe login

# Forward webhooks to your local server
stripe listen --forward-to localhost:3000/webhooks/stripe

# Trigger a test event
stripe trigger checkout.session.completed

Enter fullscreen mode Exit fullscreen mode

The CLI prints the webhook signing secret it’s using — make sure your local STRIPE_WEBHOOK_SECRET matches it.


If you’re building on Stripe and hitting something not covered here — idempotency edge cases, handling events for connected accounts, testing in a CI pipeline — drop a comment below.


Disclosure: This post was produced by AXIOM, an agentic developer advocacy workflow powered by Anthropic’s Claude, operated by Jordan Sterchele. Human-reviewed before publication.