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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
博客园 - 叶小钗
雷峰网
雷峰网
量子位

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(github-copilot): support GUI/RPC wizard auth flow (#7...
indierawk2k2 · 2026-04-30 · via Recent Commits to openclaw:main

@@ -11,6 +11,7 @@ import type { RuntimeEnv } from "openclaw/plugin-sdk/runtime";

1111

const CLIENT_ID = "Iv1.b507a08c87ecfe98";

1212

const DEVICE_CODE_URL = "https://github.com/login/device/code";

1313

const ACCESS_TOKEN_URL = "https://github.com/login/oauth/access_token";

14+

const GITHUB_DEVICE_VERIFICATION_URL = "https://github.com/login/device";

14151516

type DeviceCodeResponse = {

1617

device_code: string;

@@ -32,6 +33,26 @@ type DeviceTokenResponse =

3233

error_uri?: string;

3334

};

343536+

const GITHUB_DEVICE_ACCESS_DENIED = Symbol("github-device-access-denied");

37+

const GITHUB_DEVICE_EXPIRED = Symbol("github-device-expired");

38+39+

class GitHubDeviceFlowError extends Error {

40+

readonly kind: symbol;

41+

constructor(kind: symbol, message: string) {

42+

super(message);

43+

this.kind = kind;

44+

this.name = "GitHubDeviceFlowError";

45+

}

46+

}

47+48+

function isGitHubDeviceAccessDeniedError(err: unknown): boolean {

49+

return err instanceof GitHubDeviceFlowError && err.kind === GITHUB_DEVICE_ACCESS_DENIED;

50+

}

51+52+

function isGitHubDeviceExpiredError(err: unknown): boolean {

53+

return err instanceof GitHubDeviceFlowError && err.kind === GITHUB_DEVICE_EXPIRED;

54+

}

55+3556

function parseJsonResponse(value: unknown): Record<string, unknown> {

3657

if (!value || typeof value !== "object") {

3758

throw new Error("Unexpected response from GitHub");

@@ -105,15 +126,100 @@ async function pollForAccessToken(params: {

105126

continue;

106127

}

107128

if (err === "expired_token") {

108-

throw new Error("GitHub device code expired; run login again");

129+

throw new GitHubDeviceFlowError(

130+

GITHUB_DEVICE_EXPIRED,

131+

"GitHub device code expired; run login again",

132+

);

109133

}

110134

if (err === "access_denied") {

111-

throw new Error("GitHub login cancelled");

135+

throw new GitHubDeviceFlowError(GITHUB_DEVICE_ACCESS_DENIED, "GitHub login cancelled");

112136

}

113137

throw new Error(`GitHub device flow error: ${err}`);

114138

}

115139116-

throw new Error("GitHub device code expired; run login again");

140+

throw new GitHubDeviceFlowError(

141+

GITHUB_DEVICE_EXPIRED,

142+

"GitHub device code expired; run login again",

143+

);

144+

}

145+146+

function normalizeGitHubDeviceVerificationUrl(raw: string): string {

147+

let parsed: URL;

148+

try {

149+

parsed = new URL(raw);

150+

} catch {

151+

throw new Error("GitHub device flow returned an invalid verification URL");

152+

}

153+154+

if (

155+

parsed.protocol !== "https:" ||

156+

parsed.hostname !== "github.com" ||

157+

parsed.pathname !== "/login/device" ||

158+

parsed.username ||

159+

parsed.password

160+

) {

161+

throw new Error("GitHub device flow returned an unexpected verification URL");

162+

}

163+164+

return GITHUB_DEVICE_VERIFICATION_URL;

165+

}

166+167+

function normalizeGitHubDeviceUserCode(raw: string): string {

168+

const userCode = raw.trim();

169+

if (!userCode || userCode.length > 64) {

170+

throw new Error("GitHub device flow returned an invalid user code");

171+

}

172+

return userCode;

173+

}

174+175+

export type GitHubCopilotDeviceFlowResult =

176+

| { status: "authorized"; accessToken: string }

177+

| { status: "access_denied" }

178+

| { status: "expired" };

179+180+

export type GitHubCopilotDeviceFlowIO = {

181+

showCode(args: { verificationUrl: string; userCode: string; expiresInMs: number }): Promise<void>;

182+

openUrl?: (url: string) => Promise<void>;

183+

};

184+185+

export async function runGitHubCopilotDeviceFlow(

186+

io: GitHubCopilotDeviceFlowIO,

187+

): Promise<GitHubCopilotDeviceFlowResult> {

188+

const device = await requestDeviceCode({ scope: "read:user" });

189+

const verificationUrl = normalizeGitHubDeviceVerificationUrl(device.verification_uri);

190+

const userCode = normalizeGitHubDeviceUserCode(device.user_code);

191+

const expiresInMs = device.expires_in * 1000;

192+

// Anchor expiry to when GitHub issued the code, not when the UI finishes prompting.

193+

const expiresAt = Date.now() + expiresInMs;

194+195+

await io.showCode({

196+

verificationUrl,

197+

userCode,

198+

expiresInMs,

199+

});

200+201+

try {

202+

await io.openUrl?.(verificationUrl);

203+

} catch {

204+

// The code and URL have already been shown. Browser launch is best-effort.

205+

}

206+207+

try {

208+

const accessToken = await pollForAccessToken({

209+

deviceCode: device.device_code,

210+

intervalMs: Math.max(1000, device.interval * 1000),

211+

expiresAt,

212+

});

213+

return { status: "authorized", accessToken };

214+

} catch (err) {

215+

if (isGitHubDeviceAccessDeniedError(err)) {

216+

return { status: "access_denied" };

217+

}

218+

if (isGitHubDeviceExpiredError(err)) {

219+

return { status: "expired" };

220+

}

221+

throw err;

222+

}

117223

}

118224119225

export async function githubCopilotLoginCommand(

@@ -166,8 +272,6 @@ export async function githubCopilotLoginCommand(

166272

type: "token",

167273

provider: "github-copilot",

168274

token: accessToken,

169-

// GitHub device flow token doesn't reliably include expiry here.

170-

// Leave expires unset; we'll exchange into Copilot token plus expiry later.

171275

},

172276

agentDir: opts.agentDir,

173277

});