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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
B
Blog
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Help Net Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
IT之家
IT之家
D
Docker
Google DeepMind News
Google DeepMind News
罗磊的独立博客
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
博客园 - 司徒正美
Engineering at Meta
Engineering at Meta

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 API Calls Are Being Blocked In The Browser (and ...
Jordan Sterc · 2026-04-25 · via DEV Community

The CORS error that kills every developer’s first API integration — and the serverless proxy pattern that solves it permanently.


If you’ve ever built something that calls an external API directly from the browser and seen this:

TypeError: Failed to fetch
Access to fetch at 'https://api.example.com' from origin 'https://yourapp.com' 
has been blocked by CORS policy

Enter fullscreen mode Exit fullscreen mode

This post is for you.

I hit this exact wall building a live subscription dashboard on RevenueCat’s Charts API. The API works perfectly. The dashboard works perfectly. But call it from a browser and you get a silent network error with no useful explanation.

Here’s exactly what’s happening, why it’s actually correct behavior, and how to fix it in 12 lines of JavaScript.


What CORS Actually Is

CORS stands for Cross-Origin Resource Sharing. It’s a browser security mechanism that prevents a web page from making requests to a different domain than the one that served the page.

When your dashboard at yourapp.netlify.app tries to call api.revenuecat.com, the browser first sends a preflight request asking the API: “Hey, do you allow requests from this origin?”

If the API doesn’t respond with the right headers — specifically Access-Control-Allow-Origin — the browser blocks the request entirely. Not the server. The browser.

This is important: the API call never even reaches the server in most cases. The browser kills it first.


Why APIs Block Browser Requests on Purpose

Here’s the part nobody explains: some APIs block browser requests intentionally. RevenueCat’s Charts API is one of them.

The reason is simple. The Charts API requires a secret v2 key with elevated permissions. Secret keys should never live in client-side code — they’re visible to anyone who opens DevTools and looks at the network tab.

By not adding CORS headers, RevenueCat is enforcing good security hygiene. They’re saying: this key belongs on a server, not in a browser.

So the CORS error isn’t a bug. It’s the API telling you: route this through a server.


The Fix: A Serverless Proxy

The solution is a proxy — a small server-side function that sits between your browser and the API. Your browser calls the proxy (same origin, no CORS issue). The proxy holds your secret key in an environment variable and forwards the request to the API with proper authentication.

Here’s the full pattern using Netlify Functions:

Step 1 — Create the function file

your-project/
  netlify/
    functions/
      rc-proxy.js    ← create this
  index.html

Enter fullscreen mode Exit fullscreen mode

Step 2 — Write the proxy (12 lines)

// netlify/functions/rc-proxy.js
exports.handler = async (event) => {
  const { path, params } = JSON.parse(event.body);
  const url = `https://api.revenuecat.com/v2${path}?${new URLSearchParams(params)}`;

  const res = await fetch(url, {
    headers: {
      'Authorization': `Bearer ${process.env.RC_API_KEY}`,
      'Content-Type': 'application/json'
    }
  });

  return {
    statusCode: res.status,
    body: JSON.stringify(await res.json())
  };
};

Enter fullscreen mode Exit fullscreen mode

Step 3 — Set your environment variable

In your Netlify dashboard: Site Settings → Environment Variables → Add variable

Key:   RC_API_KEY
Value: your_secret_api_key_here

Enter fullscreen mode Exit fullscreen mode

Your key never touches the browser. It lives in Netlify’s encrypted environment variable store.

Step 4 — Call the proxy from your frontend

// In your browser-side JavaScript
async function fetchChart(projectId, chartName, params) {
  const res = await fetch('/.netlify/functions/rc-proxy', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
      path: `/projects/${projectId}/charts/${chartName}`,
      params: {
        resolution: params.resolution || 'week',
        start_time: params.startDate,
        end_time: params.endDate
      }
    })
  });

  const data = await res.json();
  return data.values || [];
}

Enter fullscreen mode Exit fullscreen mode

Same origin. No CORS. Key never exposed. Done.


Why This Works

The browser’s CORS restriction only applies to cross-origin requests. When your frontend at yourapp.netlify.app calls yourapp.netlify.app/.netlify/functions/rc-proxy — that’s the same origin. No preflight, no CORS check, no block.

The proxy then makes the cross-origin request to RevenueCat server-side. Servers don’t have CORS restrictions. Only browsers do.

The request chain looks like this:

Browser → /.netlify/functions/rc-proxy → api.revenuecat.com
         [same origin, no CORS]         [server-to-server, no CORS]

Enter fullscreen mode Exit fullscreen mode


Testing Without Deploying

You don’t need to deploy to test this. Use Netlify Dev locally:

npm install -g netlify-cli
netlify dev

Enter fullscreen mode Exit fullscreen mode

Netlify Dev spins up a local server that emulates the Functions environment, reads your .env file, and serves your frontend — all at localhost:8888. Your proxy runs at localhost:8888/.netlify/functions/rc-proxy.

Your .env file for local development:

RC_API_KEY=your_secret_key_here

Enter fullscreen mode Exit fullscreen mode

Never commit .env to git. Add it to .gitignore.


Extending the Pattern

The same 12-line proxy works for any API that blocks browser requests. Change the base URL and you’ve got a proxy for:

Stripe:

const url = `https://api.stripe.com/v1${path}`;
// headers: { 'Authorization': `Bearer ${process.env.STRIPE_SECRET_KEY}` }

Enter fullscreen mode Exit fullscreen mode

OpenAI:

const url = `https://api.openai.com/v1${path}`;
// headers: { 'Authorization': `Bearer ${process.env.OPENAI_API_KEY}` }

Enter fullscreen mode Exit fullscreen mode

Any REST API with secret key auth:

const url = `https://api.yourservice.com${path}`;
// headers: { 'Authorization': `Bearer ${process.env.YOUR_SECRET_KEY}` }

Enter fullscreen mode Exit fullscreen mode

The pattern is identical. One function, any API.


What About Rate Limits?

The proxy is also a good place to handle rate limiting. If the API returns a 429, you can catch it and return a meaningful error to the frontend instead of a generic network failure:

exports.handler = async (event) => {
  const { path, params } = JSON.parse(event.body);
  const url = `https://api.revenuecat.com/v2${path}?${new URLSearchParams(params)}`;

  const res = await fetch(url, {
    headers: { 'Authorization': `Bearer ${process.env.RC_API_KEY}` }
  });

  // Surface rate limit info to the frontend
  if (res.status === 429) {
    const retryAfter = res.headers.get('Retry-After') || '60';
    return {
      statusCode: 429,
      body: JSON.stringify({ 
        error: 'Rate limited', 
        retryAfter: parseInt(retryAfter) 
      })
    };
  }

  return {
    statusCode: res.status,
    body: JSON.stringify(await res.json())
  };
};

Enter fullscreen mode Exit fullscreen mode

Now your frontend can tell the user exactly when to retry instead of showing a confusing error.


The Full Working Dashboard

If you want to see this proxy pattern in action with a complete frontend, the live RevenueCat Charts API dashboard I built is here:

→ rc-charts-dashboard.netlify.app

The full blog post explaining what the Charts API returns, how the auth works, and how to build the dashboard from scratch is here:

→ I Built a Live Subscription Dashboard on RevenueCat’s Charts API in One HTML File

If you’re building on any API that blocks CORS and hitting a wall — drop a comment. I’ll help you wire up the proxy.


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.