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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
月光博客
月光博客
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
Last Week in AI
Last Week in AI
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
爱范儿
爱范儿
J
Java Code Geeks
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
阮一峰的网络日志
阮一峰的网络日志

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(feishu): preserve api error diagnostics · openclaw/op...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -12,6 +12,7 @@ import { normalizeLowercaseStringOrEmpty } from "openclaw/plugin-sdk/text-runtim

1212

import type { ClawdbotConfig } from "../runtime-api.js";

1313

import { resolveFeishuRuntimeAccount } from "./accounts.js";

1414

import { createFeishuClient } from "./client.js";

15+

import { requestFeishuApi } from "./comment-shared.js";

1516

import { normalizeFeishuExternalKey } from "./external-keys.js";

1617

import { getFeishuRuntime } from "./runtime.js";

1718

import { assertFeishuMessageApiSuccess, toFeishuSendResult } from "./send-result.js";

@@ -418,12 +419,17 @@ export async function uploadImageFeishu(params: {

418419

// See: https://github.com/larksuite/node-sdk/issues/121

419420

const imageData = typeof image === "string" ? fs.createReadStream(image) : image;

420421421-

const response = await client.im.image.create({

422-

data: {

423-

image_type: imageType,

424-

image: imageData,

425-

},

426-

});

422+

const response = await requestFeishuApi(

423+

() =>

424+

client.im.image.create({

425+

data: {

426+

image_type: imageType,

427+

image: imageData,

428+

},

429+

}),

430+

"Feishu image upload failed",

431+

{ includeNestedErrorLogId: true },

432+

);

427433428434

return {

429435

imageKey: extractFeishuUploadKey(response, {

@@ -469,14 +475,19 @@ export async function uploadFileFeishu(params: {

469475470476

const safeFileName = sanitizeFileNameForUpload(fileName);

471477472-

const response = await client.im.file.create({

473-

data: {

474-

file_type: fileType,

475-

file_name: safeFileName,

476-

file: fileData,

477-

...(duration !== undefined && { duration }),

478-

},

479-

});

478+

const response = await requestFeishuApi(

479+

() =>

480+

client.im.file.create({

481+

data: {

482+

file_type: fileType,

483+

file_name: safeFileName,

484+

file: fileData,

485+

...(duration !== undefined && { duration }),

486+

},

487+

}),

488+

"Feishu file upload failed",

489+

{ includeNestedErrorLogId: true },

490+

);

480491481492

return {

482493

fileKey: extractFeishuUploadKey(response, {

@@ -506,26 +517,36 @@ export async function sendImageFeishu(params: {

506517

const content = JSON.stringify({ image_key: imageKey });

507518508519

if (replyToMessageId) {

509-

const response = await client.im.message.reply({

510-

path: { message_id: replyToMessageId },

511-

data: {

512-

content,

513-

msg_type: "image",

514-

...(replyInThread ? { reply_in_thread: true } : {}),

515-

},

516-

});

520+

const response = await requestFeishuApi(

521+

() =>

522+

client.im.message.reply({

523+

path: { message_id: replyToMessageId },

524+

data: {

525+

content,

526+

msg_type: "image",

527+

...(replyInThread ? { reply_in_thread: true } : {}),

528+

},

529+

}),

530+

"Feishu image reply failed",

531+

{ includeNestedErrorLogId: true },

532+

);

517533

assertFeishuMessageApiSuccess(response, "Feishu image reply failed");

518534

return toFeishuSendResult(response, receiveId);

519535

}

520536521-

const response = await client.im.message.create({

522-

params: { receive_id_type: receiveIdType },

523-

data: {

524-

receive_id: receiveId,

525-

content,

526-

msg_type: "image",

527-

},

528-

});

537+

const response = await requestFeishuApi(

538+

() =>

539+

client.im.message.create({

540+

params: { receive_id_type: receiveIdType },

541+

data: {

542+

receive_id: receiveId,

543+

content,

544+

msg_type: "image",

545+

},

546+

}),

547+

"Feishu image send failed",

548+

{ includeNestedErrorLogId: true },

549+

);

529550

assertFeishuMessageApiSuccess(response, "Feishu image send failed");

530551

return toFeishuSendResult(response, receiveId);

531552

}

@@ -553,26 +574,36 @@ export async function sendFileFeishu(params: {

553574

const content = JSON.stringify({ file_key: fileKey });

554575555576

if (replyToMessageId) {

556-

const response = await client.im.message.reply({

557-

path: { message_id: replyToMessageId },

558-

data: {

559-

content,

560-

msg_type: msgType,

561-

...(replyInThread ? { reply_in_thread: true } : {}),

562-

},

563-

});

577+

const response = await requestFeishuApi(

578+

() =>

579+

client.im.message.reply({

580+

path: { message_id: replyToMessageId },

581+

data: {

582+

content,

583+

msg_type: msgType,

584+

...(replyInThread ? { reply_in_thread: true } : {}),

585+

},

586+

}),

587+

"Feishu file reply failed",

588+

{ includeNestedErrorLogId: true },

589+

);

564590

assertFeishuMessageApiSuccess(response, "Feishu file reply failed");

565591

return toFeishuSendResult(response, receiveId);

566592

}

567593568-

const response = await client.im.message.create({

569-

params: { receive_id_type: receiveIdType },

570-

data: {

571-

receive_id: receiveId,

572-

content,

573-

msg_type: msgType,

574-

},

575-

});

594+

const response = await requestFeishuApi(

595+

() =>

596+

client.im.message.create({

597+

params: { receive_id_type: receiveIdType },

598+

data: {

599+

receive_id: receiveId,

600+

content,

601+

msg_type: msgType,

602+

},

603+

}),

604+

"Feishu file send failed",

605+

{ includeNestedErrorLogId: true },

606+

);

576607

assertFeishuMessageApiSuccess(response, "Feishu file send failed");

577608

return toFeishuSendResult(response, receiveId);

578609

}