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

推荐订阅源

L
LangChain Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
U
Unit 42
腾讯CDC
D
Docker
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
I
InfoQ
Jina AI
Jina AI
爱范儿
爱范儿
宝玉的分享
宝玉的分享
博客园 - Franky
G
Google Developers Blog
P
Proofpoint News Feed

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(auth): accept oauthRef profiles for runtime auth · op...
obviyus · 2026-05-14 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -12,6 +12,7 @@ import {

1212

bridgeCodexAppServerStartOptions,

1313

refreshCodexAppServerAuthTokens,

1414

resolveCodexAppServerAuthAccountCacheKey,

15+

resolveCodexAppServerAuthProfileId,

1516

resolveCodexAppServerHomeDir,

1617

resolveCodexAppServerNativeHomeDir,

1718

} from "./auth-bridge.js";

@@ -651,6 +652,30 @@ describe("bridgeCodexAppServerStartOptions", () => {

651652

}

652653

});

653654
655+

it("selects an oauthRef-backed Codex profile for app-server login", () => {

656+

expect(

657+

resolveCodexAppServerAuthProfileId({

658+

store: {

659+

version: 1,

660+

profiles: {

661+

"openai-codex:default": {

662+

type: "oauth",

663+

provider: "openai-codex",

664+

access: "",

665+

refresh: "",

666+

expires: Date.now() + 60_000,

667+

oauthRef: {

668+

source: "openclaw-credentials",

669+

provider: "openai-codex",

670+

id: "0123456789abcdef0123456789abcdef",

671+

},

672+

},

673+

},

674+

},

675+

}),

676+

).toBe("openai-codex:default");

677+

});

678+
654679

it("applies native Codex CLI OAuth when no OpenClaw auth profile exists", async () => {

655680

const root = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-codex-app-server-"));

656681

const agentDir = path.join(root, "agent");

Original file line numberDiff line numberDiff line change

@@ -103,4 +103,23 @@ describe("evaluateStoredCredentialEligibility", () => {

103103

});

104104

expect(result).toEqual({ eligible: false, reasonCode: "invalid_expires" });

105105

});

106+
107+

it("marks oauth with oauthRef as eligible", () => {

108+

const result = evaluateStoredCredentialEligibility({

109+

credential: {

110+

type: "oauth",

111+

provider: "openai-codex",

112+

access: "",

113+

refresh: "",

114+

expires: now + 60_000,

115+

oauthRef: {

116+

source: "openclaw-credentials",

117+

provider: "openai-codex",

118+

id: "0123456789abcdef0123456789abcdef",

119+

},

120+

},

121+

now,

122+

});

123+

expect(result).toEqual({ eligible: true, reasonCode: "ok" });

124+

});

106125

});

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,5 @@

11

import { coerceSecretRef, normalizeSecretInputString } from "../../config/types.secrets.js";

2-

import type { AuthProfileCredential, OAuthCredential } from "./types.js";

2+

import type { AuthProfileCredential, OAuthCredential, OAuthCredentialRef } from "./types.js";

33
44

export type AuthCredentialReasonCode =

55

| "ok"

@@ -69,6 +69,15 @@ function hasConfiguredSecretString(value: unknown): boolean {

6969

return normalizeSecretInputString(value) !== undefined;

7070

}

7171
72+

function hasConfiguredOAuthRef(value: OAuthCredentialRef | undefined): boolean {

73+

return (

74+

value?.source === "openclaw-credentials" &&

75+

value.provider === "openai-codex" &&

76+

typeof value.id === "string" &&

77+

/^[a-f0-9]{32}$/.test(value.id)

78+

);

79+

}

80+
7281

export function evaluateStoredCredentialEligibility(params: {

7382

credential: AuthProfileCredential;

7483

now?: number;

@@ -104,7 +113,8 @@ export function evaluateStoredCredentialEligibility(params: {

104113
105114

if (

106115

normalizeSecretInputString(credential.access) === undefined &&

107-

normalizeSecretInputString(credential.refresh) === undefined

116+

normalizeSecretInputString(credential.refresh) === undefined &&

117+

!hasConfiguredOAuthRef(credential.oauthRef)

108118

) {

109119

return { eligible: false, reasonCode: "missing_credential" };

110120

}

Original file line numberDiff line numberDiff line change

@@ -276,6 +276,33 @@ describe("resolveAuthProfileOrder", () => {

276276

expect(order).toEqual(["openai-codex:personal", "openai:backup"]);

277277

});

278278
279+

it("lets Codex auth discover oauthRef-backed OAuth profiles", async () => {

280+

const store: AuthProfileStore = {

281+

version: 1,

282+

profiles: {

283+

"openai-codex:personal": {

284+

type: "oauth",

285+

provider: "openai-codex",

286+

access: "",

287+

refresh: "",

288+

expires: Date.now() + 60_000,

289+

oauthRef: {

290+

source: "openclaw-credentials",

291+

provider: "openai-codex",

292+

id: "0123456789abcdef0123456789abcdef",

293+

},

294+

},

295+

},

296+

};

297+
298+

const order = resolveAuthProfileOrder({

299+

store,

300+

provider: "openai-codex",

301+

});

302+
303+

expect(order).toEqual(["openai-codex:personal"]);

304+

});

305+
279306

it("preserves native Codex profiles before OpenAI alias API-key order", async () => {

280307

const store: AuthProfileStore = {

281308

version: 1,