返回顶部
f

feishu-send-file飞书发送文件

飞书发送文件技能。用于通过飞书向用户发送普通文件附件(HTML、ZIP、PDF、代码文件等)以及处理“本地图片路径被发成路径文本”的可靠补救场景。普通文件必须先上传获取 `file_key` 再发送;当本地图片用 `message`/`media` 发送后在飞书里只显示 `/root/...png` 路径而不显示图片时,改用本技能内的稳定图片上传脚本(`im/v1/images` -> `image_key` -> `msg_type=image`)。

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.2.1
安全检测
已通过
2,064
下载量
免费
免费
3
收藏
概述
安装方式
版本历史

feishu-send-file

飞书发送文件

飞书机器人发送普通文件(非图片/视频)需要两步:先上传文件获取 filekey,再用 filekey 发消息。

如果本地图片通过常规 message / media 路径发送后,用户在飞书里看到的是 /root/...png 路径文本而不是图片本体,不要继续重试同一种方式;直接改走本技能的稳定图片上传脚本

快速流程

方式一:用脚本(推荐)

bash
python3 scripts/sendfile.py path> id> id> secret> [filename]

参数说明:

  • - filepath: 要发送的文件路径(HTML/PDF/ZIP/代码文件等)
  • openid: 接收者的 openid(从 inboundmeta 的 chatid 字段获取,格式为 user:ouxxx,取 ouxxx 部分)
  • appid: 飞书应用 ID(从 openclaw.json 的 channels.feishu.appId 读取)
  • appsecret: 飞书应用密钥(从 openclaw.json 的 channels.feishu.appSecret 读取)
  • filename: 可选,自定义文件名(不填则用原文件名)

快速获取配置:
bash

获取 appid 和 appsecret


grep -A 2 feishu /root/.openclaw/openclaw.json | grep -E (appId|appSecret)

完整示例:
bash
python3 /root/.openclaw/workspace/skills/feishu-send-file/scripts/send_file.py \
/root/myfiles/report.html \
OPENID> \
APPID> \
APPSECRET> \
report.html

AI 助手使用示例:
python

当需要发送文件给用户时,直接调用脚本


exec(f
python3 /root/.openclaw/workspace/skills/feishu-send-file/scripts/send_file.py \\
{file_path} \\
{useropenid} \\
{app_id} \\
{app_secret} \\
{custom_filename}
)

方式二:手动两步

Step 1 - 上传文件:
bash
TOKEN=$(curl -s -X POST https://open.feishu.cn/open-apis/auth/v3/tenantaccesstoken/internal \
-H Content-Type: application/json \
-d {appid:ID>,appsecret:SECRET>} | python3 -c import json,sys; print(json.load(sys.stdin)[tenantaccesstoken]))

FILE_KEY=$(curl -s -X POST https://open.feishu.cn/open-apis/im/v1/files \
-H Authorization: Bearer $TOKEN \
-F file_type=stream \
-F file_name=<文件名> \
-F file=@<文件路径> | python3 -c import json,sys; print(json.load(sys.stdin)[data][file_key]))

Step 2 - 发送消息:
bash
curl -s -X POST https://open.feishu.cn/open-apis/im/v1/messages?receiveidtype=open_id \
-H Authorization: Bearer $TOKEN \
-H Content-Type: application/json \
-d {\receiveid\:\ID>\,\msgtype\:\file\,\content\:\{\\\filekey\\\:\\\$FILE_KEY\\\}\}

稳定发送图片(2026-03-15 补充)

什么时候不要再硬用 message + media

如果你把本地图片路径(尤其是 /root/myfiles/...)传给飞书消息链路后,用户在飞书里看到的是:

  • - 📎 /root/myfiles/xxx.png
  • 或纯本地路径文本

那就说明这次没有真正发成图片。不要继续重试同一种参数组合。

原因(真实世界版)

  • - 飞书真正的图片消息不是把本地路径塞给消息发送器
  • 正路是:先上传到 im/v1/images,拿到 imagekey,再发送 msgtype=image
  • OpenClaw / Feishu 插件在某些本地路径场景下(特别是 /root/myfiles/...)可能无法走通本地媒体上传链路,随后自动降级成把路径文本发出去
  • 所以:messageId 返回成功 不等于 用户真的看到了图片

成功标准

只有一个成功标准:用户在飞书里实际看到图片本体。

如果回显的是路径文本,就视为失败。

推荐脚本(稳定版)

bash
python3 scripts/sendimage.py path> id> id> [domain]

示例:

bash
python3 /root/.openclaw/workspace/skills/feishu-send-file/scripts/send_image.py \
/root/myfiles/generated-images/demo.png \
OPEN
ID> \
APP
ID> \
APP
SECRET>

如果是国际版 Lark:

bash
python3 scripts/sendimage.py path> id> id> lark

这和普通文件的区别

  • - 普通文件:im/v1/files -> filekey -> msgtype=file
  • 图片:im/v1/images -> imagekey -> msgtype=image

这两条链路不要混用。

注意事项

  • - 普通文件:必须走本技能的两步流程,直接用 filePath 参数只会显示路径
  • 图片:理论上 message tool 的 media 参数可以工作;但如果用户看到的是路径文本而不是图片本体,立刻改用 scripts/sendimage.py
  • 不要把 /root/myfiles/... 本地路径回显误判为发送成功
  • receiveidtype=openid 对应个人用户;群聊用 chatid 并替换类型
  • 飞书 filetype 用 stream 适用于所有普通文件类型

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 feishu-send-file-1776297672 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 feishu-send-file-1776297672 技能

通过命令行安装

skillhub install feishu-send-file-1776297672

下载

⬇ 下载 feishu-send-file v1.2.1(免费)

文件大小: 6.22 KB | 发布时间: 2026-4-16 18:28

v1.2.1 最新 2026-4-16 18:28
Document reliable Feishu image sending via im/v1/images -> image_key, add send_image.py helper, and clarify path-text fallback when local media upload fails.

Archiver·手机版·闲社网·闲社论坛·智能体自动化市场· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2026 闲社网·AI智能体论坛·AI自动化解决方案·http://xianshe.com

p2p_official_large
返回顶部