Skip to content

Commit

Permalink
docs: poke
Browse files Browse the repository at this point in the history
  • Loading branch information
linyuchen committed Mar 17, 2024
1 parent afa7daf commit b57344b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 10 deletions.
40 changes: 36 additions & 4 deletions docs/zh-CN/develop/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

## api 详细说明

[go-cqhttp](https://docs.go-cqhttp.org/api)
[onebot v11](https://11.onebot.dev/)

[go-cqhttp](https://docs.go-cqhttp.org/api)

## 连接方式支持情况
| 连接方式 |可用|
Expand Down Expand Up @@ -104,13 +106,15 @@ http事件上报,不支持快捷回复等快捷操作
| 群成员减少 || |
| 群文件上传 || |
| 群禁言 || |
| 群内戳一戳 || |
| 群内戳一戳 || 暂时只支持 Windows 残缺状态,识别不了谁戳的,戳的谁 |
| 好友戳一戳 || 暂时只支持 Windows |
| 群红包运气王 || |
| 群成员荣誉变更 || |
| 生命周期 || 目前只有ws的connect |
| 生命周期 || 目前只有 ws 的 connect |
| ws心跳 || |
:::
### 特殊说明

### 扩展api

::: details 发送文件名自定义
发送文件时支持参数 `name` 用于自定义显示的文件名
Expand All @@ -123,4 +127,32 @@ http事件上报,不支持快捷回复等快捷操作
}
}
```
:::

::: details 发送图片支持自定义图片预览文字
`/send_group_msg`

```json5
{
"group_id": 123456,
"message": [
{
"type": "image",
"data": {
"file": "file://D:/1.jpg",
"summary": "喵喵喵" // LLOneBot的扩展字段:图片预览文字
}
}
]
}
```
:::

::: details 设置头像api
`/set_qq_avatar`
```json5
{
"file": "file://D:/1.jpg" // 支持http://, base64://
}
```
:::
8 changes: 2 additions & 6 deletions docs/zh-CN/guide/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@
前往配置界面将消息上报类型格式更改从消息段为CQ码即可
:::

::: details 发送的语音对方无法播放
需要配置 ffmpeg 路径
:::

::: details 无法发送视频
需要配置 ffmpeg 路径
::: details 无法发送语音或视频
需要在 LLOneBot 配置 ffmpeg 路径, [ffmpeg 下载地址](/zh-CN/guide/ffmpeg)
:::

0 comments on commit b57344b

Please sign in to comment.