Skip to content

Commit

Permalink
[Docs] add more extend API
Browse files Browse the repository at this point in the history
  • Loading branch information
Linwenxuan04 committed Feb 27, 2024
1 parent e3ad619 commit df4c3d7
Showing 1 changed file with 56 additions and 2 deletions.
58 changes: 56 additions & 2 deletions docs/Lagrange.OneBot/API/Extend/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,59 @@
# 拓展API

## 获取收藏表情

**方法名**
`fetch_custom_face`

#### 该方法无参数

**响应数据**

| 字段 | 类型 | 说明 |
|---------------|--------------|----------|
| [RootElement] | List[string] | 表情的下载URL |


## 获取好友历史消息记录

**方法名**
`get_friend_msg_history`

**参数**

| 字段 | 类型 | 说明 |
|--------------|--------|----------------|
| `user_id` | uint32 | 好友ID |
| `message_id` | int32 | 要获取的消息的最后一条的ID |
| `count` | int32 | 获取的消息数量 |

**响应数据**

| 字段 | 类型 | 说明 |
|------------|----------------------------|-------|
| `messages` | List[OneBotPrivateMessage] | 获取的消息 |

## 获取群组历史消息记录

**方法名**
`get_group_msg_history`

**参数**

| 字段 | 类型 | 说明 |
|--------------|--------|----------------|
| `group_id` | uint32 | 群组ID |
| `message_id` | int32 | 要获取的消息的最后一条的ID |
| `count` | int32 | 获取的消息数量 |

**响应数据**

| 字段 | 类型 | 说明 |
| --- |--------------------------|-------|
| `messages` | List[OneBotGroupMessage] | 获取的消息 |



## 构造合并转发消息

**方法名**
Expand All @@ -9,15 +63,15 @@

| 字段 | 类型 | 说明 |
| --- | --- | --- |
| `messages` | list[OneBotSegment.node] | 参考下方 |
| `messages` | List[OneBotSegment.node] | 参考下方 |

其中`OneBotSegment.node``data`部分要求如下

| 字段 | 类型 | 说明 |
| --- | --- | --- |
| `name` | string | 自定义消息发送者昵称 |
| `uin` | string | 自定义消息发送者QQ号 |
| `content` | list[OneBotSegment] | 消息内容 |
| `content` | List[OneBotSegment] | 消息内容 |

**响应数据**

Expand Down

0 comments on commit df4c3d7

Please sign in to comment.