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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
Jina AI
Jina AI
量子位
博客园 - 叶小钗
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园 - 聂微东
美团技术团队
Last Week in AI
Last Week in AI
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
The Cloudflare 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
Prevent Duplicate API Requests in Angular with Idempotenc...
Alessandro T · 2026-04-24 · via DEV Community

Modern web applications frequently interact with APIs that perform critical operations such as payments, order creation, or data updates. One common problem developers encounter is duplicate requests caused by:

  • users double-clicking buttons
  • unstable internet connections
  • automatic retries
  • browser refreshes during a request

Without safeguards, these duplicates can lead to serious issues like multiple charges, duplicated orders, or inconsistent data.

To solve this, many modern APIs rely on a concept called idempotency.

What is Idempotency in API Requests?

In simple terms, idempotency means that performing the same operation multiple times produces the same result as performing it once.

In API design, this means that sending the same request multiple times should not create multiple side effects.

This is usually implemented using a unique request identifier called an Idempotency Key.

Example request:

POST /orders
Idempotency-Key: 12345

Enter fullscreen mode Exit fullscreen mode

If the same request is sent again with the same key, the server recognizes it and returns the previously generated response instead of executing the operation again.

Real-World Example: Online Payments

Imagine a user purchasing a product online.

They click “Pay Now”, but the network is slow and the page appears unresponsive.

The user clicks the button again.

Without idempotency, the system might process two payments.

User clicks Pay twice
↓
POST /payments
POST /payments
↓
Two charges are created

Enter fullscreen mode Exit fullscreen mode

With idempotency implemented:

POST /payments
Idempotency-Key: 9ab3...

POST /payments
Idempotency-Key: 9ab3...

Enter fullscreen mode Exit fullscreen mode

The server detects that the request has already been processed and simply returns the same payment result, preventing duplicate charges.

This pattern is widely used in payment platforms like Stripe.

Why Use Idempotency?

Implementing idempotency provides several important advantages.

Prevents Duplicate Operations

Users often double-click buttons or retry operations when something seems slow.

Idempotency ensures the backend processes the action only once.

Enables Safe Retries

Network failures happen frequently in real-world systems.

Idempotency allows clients to retry requests without worrying about unintended side effects.

Improves System Reliability

In distributed systems, retries and failures are normal.

Download the Medium app
Idempotency ensures that repeated requests do not break system consistency.

Better User Experience

Users should not suffer consequences due to technical issues like timeouts or slow networks.

Idempotency protects operations like:

  • payments
  • orders
  • form submissions
  • account actions

Implementing Idempotency in Angular Using an HTTP Interceptor

On the frontend, we can support idempotency by automatically attaching an Idempotency-Key header to requests.

Angular provides a perfect mechanism for this: HTTP Interceptors.

The interceptor can:

  1. Generate an idempotency key
  2. Store it in sessionStorage
  3. Attach it to outgoing requests
  4. Remove it after a successful response

Step 1: Create the Idempotency Interceptor

import { Injectable } from '@angular/core';
import {
  HttpEvent,
  HttpHandler,
  HttpInterceptor,
  HttpRequest,
  HttpResponse
} from '@angular/common/http';
import { Observable, tap } from 'rxjs';

@Injectable()
export class IdempotencyInterceptor implements HttpInterceptor {
  private readonly HEADER = 'Idempotency-Key';
  private readonly STORAGE_PREFIX = 'idem_';
  intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
    if (!['POST', 'PUT', 'PATCH'].includes(req.method)) {
      return next.handle(req);
    }
    const fingerprint = this.createFingerprint(req);
    const storageKey = this.STORAGE_PREFIX + fingerprint;
    let idempotencyKey = sessionStorage.getItem(storageKey);
    if (!idempotencyKey) {
      idempotencyKey = this.generateKey();
      sessionStorage.setItem(storageKey, idempotencyKey);
    }
    const clonedRequest = req.clone({
      setHeaders: {
        [this.HEADER]: idempotencyKey
      }
    });
    return next.handle(clonedRequest).pipe(
      tap({
        next: (event) => {
          if (event instanceof HttpResponse && event.ok) {
            sessionStorage.removeItem(storageKey);
          }
        }
      })
    );
  }
  private createFingerprint(req: HttpRequest<any>): string {
    const body = req.body ? JSON.stringify(req.body) : '';
    return btoa(`${req.method}|${req.urlWithParams}|${body}`);
  }
  private generateKey(): string {
    return crypto.randomUUID();
  }
}

Enter fullscreen mode Exit fullscreen mode

Step 2: Register the Interceptor

import { HTTP_INTERCEPTORS } from '@angular/common/http';
import { IdempotencyInterceptor } from './interceptors/idempotency.interceptor';

providers: [
  {
    provide: HTTP_INTERCEPTORS,
    useClass: IdempotencyInterceptor,
    multi: true
  }
]

Enter fullscreen mode Exit fullscreen mode

Step 3: What Happens During a Request

When Angular sends a request like this:

this.http.post('/api/orders', orderData)

Enter fullscreen mode Exit fullscreen mode

The interceptor automatically adds:

Idempotency-Key: 3f7a8c41-93a0-4b2f-b2a6-8c9f2d1e7c2b

Enter fullscreen mode Exit fullscreen mode

The key is stored in sessionStorage so that retries reuse the same identifier.

After a successful response:

HTTP 200 OK

Enter fullscreen mode Exit fullscreen mode

The stored key is removed.

Final Thoughts

Idempotency is a simple but powerful technique that dramatically improves the reliability of API-driven systems.

It helps prevent:

  • duplicate payments
  • repeated orders
  • inconsistent data

By implementing idempotency using an Angular HTTP interceptor, you can add this protection transparently across your application.

In systems where operations are critical — like payments or orders — this pattern can make the difference between a reliable system and a costly bug.


If you enjoyed this article, feel free to follow me here or connect with me on LinkedIn to stay updated on my real-world web development experiences.

I’d love to hear your thoughts and keep the conversation going!