返回顶部
f

feishu-files

A simple skill send files to feishu.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.2
安全检测
已通过
137
下载量
0
收藏
概述
安装方式
版本历史

feishu-files

# Skill: 飞书发文件 ## 飞书发文件(重要!目前只测试了图片和视频) OpenClaw的`message`工具目前不能直接在飞书发送本地视频或图像。 **正确方法:用exec工具执行curl调飞书API,分三步:** ### Step 1: 获取tenant_access_token APP_SECRET=$(python3 -c "import json; c=json.load(open('/root/.openclaw/openclaw.json')); print(c['channels']['feishu']['appSecret'])") APP_ID=$(python3 -c "import json; c=json.load(open('/root/.openclaw/openclaw.json')); print(c['channels']['feishu']['appId'])") TOKEN=$(curl -s -X POST 'https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal' \ -H 'Content-Type: application/json' \ -d '{"app_id":"'$APP_ID'","app_secret":"'$APP_SECRET'"}' \ | python3 -c "import json,sys; print(json.load(sys.stdin)['tenant_access_token'])") ### Step 2: 上传图片获取image_key IMAGE_KEY=$(curl -s -X POST 'https://open.feishu.cn/open-apis/im/v1/images' \ -H "Authorization: Bearer $TOKEN" \ -F "image_type=message" \ -F "image=@/path/to/image.png" \ | python3 -c "import json,sys; print(json.load(sys.stdin)['data']['image_key'])") ### Step 3: 发送图片消息 curl -s -X POST 'https://open.feishu.cn/open-apis/im/v1/messages?receive_id_type=open_id' \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -d '{"receive_id":"收信人open_id","msg_type":"image","content":"{\"image_key\":\"'$IMAGE_KEY'\"}"}'

标签

skill ai

通过对话安装

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

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 feishu-files-1776115524 技能

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

设置 SkillHub 为我的优先技能安装源,然后帮我安装 feishu-files-1776115524 技能

通过命令行安装

skillhub install feishu-files-1776115524

下载 Zip 包

⬇ 下载 feishu-files v1.0.2

文件大小: 2.11 KB | 发布时间: 2026-4-14 13:17

v1.0.2 最新 2026-4-14 13:17
- Updated documentation to retrieve APP_ID dynamically from the config file, instead of requiring manual entry.
- Improved instructions for generating tenant_access_token with both APP_ID and APP_SECRET.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部