From 37cfce3515ebb9fe68d2a8f297043ebcefee5afc Mon Sep 17 00:00:00 2001 From: ishkong <19740260+ishkong@users.noreply.github.com> Date: Fri, 1 Mar 2024 21:17:35 +0800 Subject: [PATCH] [Docs] Add go-cqhttp Forward API Documentation --- docs/Lagrange.OneBot/API/Extend/index.md | 46 ++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 2 deletions(-) diff --git a/docs/Lagrange.OneBot/API/Extend/index.md b/docs/Lagrange.OneBot/API/Extend/index.md index a05dc6b0..14efb7f5 100644 --- a/docs/Lagrange.OneBot/API/Extend/index.md +++ b/docs/Lagrange.OneBot/API/Extend/index.md @@ -5,7 +5,9 @@ **方法名**: `fetch_custom_face` -#### 该方法无参数 +:::tip 提示 +该方法无参数 +::: **响应数据** @@ -79,7 +81,7 @@ | --- | --- | --- | | `resid` | string | Resid | -:::tip +:::tip 提示 **发送合并转发消息** 请使用标准消息发送API发送一个`"type": "forward", "id": Resid`的`OneBotSegment`消息 @@ -104,3 +106,43 @@ async def test_send_forward_message(target_id: int): ``` ::: + +## 发送合并转发(群聊) + +**方法名**: +`send_group_forward_msg` + +**参数** + +| 字段 | 类型 | 说明 | +| ---------- | ------------------------ | ------------------------------------------------------------ | +| `group_id` | uint | 群号 | +| `messages` | List[OneBotSegment.node] | 自定义转发消息, 要求参看前文 | + +**响应数据** + +| 字段名 | 数据类型 | 说明 | +| ------------ | -------- | ----------- | +| `message_id` | int64 | 消息 ID | +| `forward_id` | string | 转发消息 ID | + + + +## 发送合并转发(好友) + +**方法名**: +`send_private_forward_msg` + +**参数** + +| 字段 | 类型 | 说明 | +| ---------- | ------------------------ | ------------------------------------------------------------ | +| `user_id` | uint | 好友QQ号 | +| `messages` | List[OneBotSegment.node] | 自定义转发消息, 要求参看前文 | + +**响应数据** + +| 字段名 | 数据类型 | 说明 | +| ------------ | -------- | ----------- | +| `message_id` | int64 | 消息 ID | +| `forward_id` | string | 转发消息 ID |