From 66c4cb51e74f134728c6cca32b8c6401a2d91acd Mon Sep 17 00:00:00 2001 From: hp0912 <809211365@qq.com> Date: Tue, 5 May 2026 13:19:04 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E5=8F=91=E9=80=81?= =?UTF-8?q?=E6=9C=AC=E5=9C=B0=E5=9B=BE=E7=89=87=E7=9A=84=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index f9d84d1..5f6fe45 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,8 @@ **发送图片的时候也可以调用 Agent 接口** +1. 发送远程图片地址 + ``` [POST] http://127.0.0.1:{ROBOT_WECHAT_CLIENT_PORT}/api/v1//robot/message/send/image/url @@ -67,6 +69,20 @@ ``` +2. 发送本地图片路径 + +``` +[POST] http://127.0.0.1:{ROBOT_WECHAT_CLIENT_PORT}/api/v1//robot/message/send/image/local + +请求体 Body: + +{ + "to_wxid": "{{ROBOT_FROM_WX_ID}}", + "file_path": ["{{file_path}}"] +} + +``` + **发送视频的时候也可以调用 Agent 接口** ```