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

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
U
Unit 42
Vercel News
Vercel News
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
C
Check Point Blog
N
Netflix TechBlog - Medium
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
博客园_首页
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
V
Visual Studio 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
I built a fake Google login because my MVP demo could not...
Jayant Raj S · 2026-05-16 · via DEV Community

I did not set out to build an identity product.

I set out to ship a thing with a login button, show it to someone, and get a reaction. You know the vibe: scaffold the app on a Saturday, wire up "Sign in with Google" because every boilerplate does, paste the env vars, run it once, record a Loom, send the link.

Then I spent the rest of the afternoon in the wrong console.

The demo was tomorrow. The product was not the blocker.

The UI was there. The callback route existed. My agent (or past me) had already dropped in Auth.js or whatever the stack wanted. On paper I was one env block away from done.

In practice I was:

  • Creating OAuth clients in Google Cloud (again, because last time was another side project)
  • Fighting redirect URI rules
  • Doing the same dance for GitHub because the MVP had two buttons and looked "real"
  • Re-reading docs about discovery URLs while the thing I actually cared about, onboarding, settings, the core loop, sat there mocking me

None of that was building my MVP. It was infrastructure tax I had to pay before I could even pretend to be a user in my own app.

If you are an MVP builder or a vibe coder, you have felt this. The energy is in the flow you want to show. The drag is in proving to a giant IdP that your localhost is allowed to exist.

What I actually needed

Not a better auth platform. Not enterprise SSO.

I needed to click login, land back in my app, see a name and email, and move on so I could:

  • Test the post-login experience
  • Demo to a friend, cofounder, or early user without saying "ignore auth for now"
  • Iterate on redirect URLs and session handling without opening three vendor dashboards
  • Feel like the MVP was real enough to judge, even when I had not earned production OAuth yet

That is a different job than "run authentication in production." It is make the social login path believable for dev, testing, and demos.

The moment I snapped

The breaking point was small and embarrassing.

I had a call in the morning. I wanted to show: sign in, land on dashboard, do the one thing my app does. The night before, Google OAuth started returning redirect_uri_mismatch because I had switched from port 3000 to 3001 after a template update. Fine. Fixable. But I was fixing their rules instead of my product.

I remember thinking: I am not blocked on product ideas. I am blocked on being a part-time admin for companies I do not work for yet.

So I did what a lot of us do when the tool we need does not exist. I hacked something local. Then I kept using it. Then it became dummyoauth.

Why I built dummyoauth (and what it is not)

dummyoauth is a mock OAuth/OIDC server for development and test. It stands in for Google, GitHub, Facebook, Microsoft, Cognito-shaped flows, and a plain OIDC profile, so your app talks to URLs that feel like the real providers while you are building.

I built it because I was tired of:

  • Losing a whole evening to consoles when I only wanted to test "what happens after login"
  • Treating every demo like a production launch checklist
  • Having "we will hook up real auth later" mean my MVP never felt finished in anyone else's hands
  • Maintaining separate mental models for "dev auth" vs "real auth" and shipping bugs when I finally switched

I did not build it to replace Clerk, Auth0, Cognito, or your production IdP. It is the stand-in you use while the MVP is still finding its shape.

The whole point is prototype with something that behaves like social login, then swap credentials when you are ready for the real apps. Same code path. Different env.

If this sounds like your week

You might be me if:

  • You can ship UI in a day but social login steals the week
  • Your demo script includes "pretend you're logged in" and you hate saying it
  • You have three sign-in buttons and three consoles staring at you
  • You are vibe-coding fast and keep getting slowed down by work that does not show up in the recording

I made dummyoauth for that person. Past me. Probably you.

Where it lives

  • Try it out at: dummyoauth.com

If you are building an MVP right now, I am curious: what broke your last demo, redirects, test users, or just never getting around to the consoles? Reply and tell me. I have been there.