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

推荐订阅源

量子位
Vercel News
Vercel News
Microsoft Azure Blog
Microsoft Azure Blog
爱范儿
爱范儿
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
H
Help Net Security
罗磊的独立博客
The Cloudflare Blog
J
Java Code Geeks
博客园 - 叶小钗
I
InfoQ
B
Blog
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
月光博客
月光博客
博客园_首页
雷峰网
雷峰网
M
MIT News - Artificial intelligence
博客园 - 【当耐特】
美团技术团队
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美

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
Make Your Hono Authorization Server Work on Any Host
ShyGyver · 2026-04-23 · via DEV Community

In the previous article we built a working OIDC Authorization Code Flow server. There was one shortcut worth updating before we could continue filling it smoothly: a hardcoded ISSUER constant.

const ISSUER = "http://localhost:3000";

Enter fullscreen mode Exit fullscreen mode

Every place that constant is used is now locked to localhost:3000: the iss JWT claim, the discovery URL, the JWKS endpoint URL returned to clients, etc... Deploy to https://auth.example.com and you will have to change the code to match the new origin. Start the server on a random port and the discovery document won't work at all.

You could use an environment variable to set the issuer at startup, but that adds complexity and is still error-prone. If you forget to set the variable or set it incorrectly, your server will be broken until you fix the configuration and restart it.

The fix is to derive the issuer from the incoming HTTP request at runtime instead of hard-coding it at startup. It's easy to do, trust me.


Step 1: Import getOriginFromRequest

@saurbit/oauth2 ships a small helper that extracts the scheme + host from a Request object. Add it to the existing import block:

import {
  AccessDeniedError,
  StrategyInsufficientScopeError,
  StrategyInternalError,
  UnauthorizedClientError,
  UnsupportedGrantTypeError,
  getOriginFromRequest, // add this
} from "@saurbit/oauth2";

Enter fullscreen mode Exit fullscreen mode


Step 2: Remove the ISSUER constant and loosen CLIENT.redirectUris

Delete the ISSUER constant entirely. While you're there, give CLIENT an explicit type and change redirectUris to an empty array. You'll handle the Scalar redirect URI dynamically in the next step:

// Before
const ISSUER = "http://localhost:3000";

const CLIENT = {
  id: "example-client",
  secret: "example-secret",
  grants: ["authorization_code"],
  redirectUris: ["http://localhost:3000/scalar"],
  scopes: ["openid", "profile", "email", "content:read", "content:write"],
};

Enter fullscreen mode Exit fullscreen mode

// After: no ISSUER constant
const CLIENT: {
  id: string;
  secret: string;
  grants: string[];
  redirectUris: string[];
  scopes: string[];
} = {
  id: "example-client",
  secret: "example-secret",
  grants: ["authorization_code"],
  redirectUris: [], // validated dynamically below
  scopes: ["openid", "profile", "email", "content:read", "content:write"],
};

Enter fullscreen mode Exit fullscreen mode

You can still add static redirect URIs to CLIENT.redirectUris if you have other clients with known URIs. For this app, Scalar's redirect URI is always {origin}/scalar which is why it doesn't make sense to hard-code it here. Unless you don't want every client to be able to redirect to your server's tool, but that's a different topic.


Step 3: Use a relative discovery URL

setDiscoveryUrl previously received the full URL including the origin. Pass only the path instead. The builder will resolve it against the request origin at runtime:

// Before
.setDiscoveryUrl(`${ISSUER}${DISCOVERY_ENDPOINT_PATH}`)

// After
.setDiscoveryUrl(`${DISCOVERY_ENDPOINT_PATH}`)

Enter fullscreen mode Exit fullscreen mode


Step 4: Validate the redirect URI against the request origin

In getClientForAuthentication the redirect URI was validated purely against the static redirectUris array. Now also accept the internal URI {origin}/scalar where origin is the origin of the current authorization request:

// Before
.getClientForAuthentication((data) => {
  if (data.clientId === CLIENT.id && CLIENT.redirectUris.includes(data.redirectUri)) {
    return {  };
  }
})

Enter fullscreen mode Exit fullscreen mode

// After
.getClientForAuthentication((data) => {
  if (
    data.clientId === CLIENT.id &&
    (data.redirectUri === `${data.origin}/scalar` ||
      CLIENT.redirectUris.includes(data.redirectUri))
  ) {
    return {  };
  }
})

Enter fullscreen mode Exit fullscreen mode

data.origin is provided by the builder from the incoming authorization request, so it automatically matches whatever host the server is running on.


Step 5: Set the iss claim from the grant context

Inside generateAccessToken, replace the static ISSUER string with grantContext.origin:

// Before
const registeredClaims = {
  
  iss: ISSUER,
  
};

Enter fullscreen mode Exit fullscreen mode

// After
const registeredClaims = {
  
  iss: grantContext.origin,
  
};

Enter fullscreen mode Exit fullscreen mode

grantContext.origin is derived from the token request that triggered this callback, so the iss claim in every access token and ID token will match the actual host that issued it.


Step 6: Prepend the runtime origin to the OpenAPI security scheme

The Scalar UI reads openIdConnectUrl from the OpenAPI spec to discover the authorization server. Now that URL is a relative path (see Step 3). So prepend the runtime origin in the /openapi.json handler:

// Before
app.get(
  "/openapi.json",
  openAPIRouteHandler(app, {
    documentation: {
      info: { title: "Auth Server API", version: "0.1.0" },
      components: {
        securitySchemes: { ...flow.toOpenAPISecurityScheme() },
      },
    },
  })
);

Enter fullscreen mode Exit fullscreen mode

// After
app.get("/openapi.json", async (c, n) => {
  const issuer = getOriginFromRequest(c.req.raw);

  const schemes = flow.toOpenAPISecurityScheme();

  for (const schemeName in schemes) {
    if (schemeName === "openidConnect") {
      schemes[schemeName].openIdConnectUrl = `${issuer}${schemes[schemeName].openIdConnectUrl}`;
      break;
    }
  }

  return await openAPIRouteHandler(app, {
    documentation: {
      info: { title: "Auth Server API", version: "0.1.0" },
      components: {
        securitySchemes: { ...schemes },
      },
    },
  })(c, n);
});

Enter fullscreen mode Exit fullscreen mode

getOriginFromRequest reads the Host (or X-Forwarded-Host) header from the raw Request object, so it returns the correct base URL whether the server is sitting behind a reverse proxy or running directly.


Result

After these changes the server has no opinion about where it is deployed. The same code works on http://localhost:3000, https://staging.example.com, and https://auth.example.com without environment-specific builds or configuration files.

Oh, and if you wonder why the endpoint URLs in the openid configuration response still have the correct origin, it's because of the way the flow's getDiscoveryConfiguration method is used in the discovery endpoint handler:

app.get(DISCOVERY_ENDPOINT_PATH, (c) => {
  const config = flow.getDiscoveryConfiguration(c.req.raw); // here we pass the Request
  return c.json(config);
});

Enter fullscreen mode Exit fullscreen mode

It accepts the raw Request object as an argument (optional) and uses it to resolve the issuer and all endpoint URLs at runtime.

Now with that out of the way, continuing to the next articles in the series will be much easier. You won't have to worry about you deployment environment... at least for that... and not until you need to support multiple issuers from the same server, but that's a topic for another day 😉

The full runnable example is available at Github (apps/oidc-app).