mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-22 01:49:12 +08:00
correct http api readme.md
This commit is contained in:
parent
89c614d0a1
commit
10e70ac370
@ -16,6 +16,8 @@ fun main() {
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
|
||||
## 认证相关
|
||||
|
||||
### 开始会话-认证(Authorize)
|
||||
@ -141,6 +143,8 @@ fun main() {
|
||||
> SessionKey与Bot 对应错误时将会返回状态码5:指定对象不存在
|
||||
|
||||
|
||||
|
||||
|
||||
## 消息相关
|
||||
|
||||
|
||||
@ -261,10 +265,10 @@ fun main() {
|
||||
### 发送图片消息(通过URL)
|
||||
|
||||
```
|
||||
[POST] /sendGroupMessage
|
||||
[POST] /sendImageMessage
|
||||
```
|
||||
|
||||
使用此方法向指定群发送消息
|
||||
使用此方法向指定对象(群或好友)发送图片消息
|
||||
|
||||
#### 请求
|
||||
|
||||
@ -303,7 +307,7 @@ fun main() {
|
||||
### 图片文件上传
|
||||
|
||||
```
|
||||
[POST] /sendGroupMessage
|
||||
[POST] /uploadImage
|
||||
```
|
||||
|
||||
使用此方法上传图片文件至服务器并返回ImageId
|
||||
@ -385,7 +389,7 @@ Content-Type:multipart/form-data
|
||||
|
||||
+ [x] At,@消息
|
||||
+ [x] AtAll,@全体成员
|
||||
+ [x] Face,表情消息
|
||||
+ [ ] Face,表情消息
|
||||
+ [x] Plain,文字消息
|
||||
+ [x] Image,图片消息
|
||||
+ [ ] Xml,Xml卡片消息
|
||||
@ -409,15 +413,13 @@ Content-Type:multipart/form-data
|
||||
```json5
|
||||
{
|
||||
"type": "At",
|
||||
"target": 123456,
|
||||
"display": "@Mirai"
|
||||
"target": 123456
|
||||
}
|
||||
```
|
||||
|
||||
| 名字 | 类型 | 说明 |
|
||||
| ------- | ------ | ------------------------- |
|
||||
| target | Long | 群员QQ号 |
|
||||
| display | String | @时显示的文本如:"@Mirai" |
|
||||
| 名字 | 类型 | 说明 |
|
||||
| ------ | ---- | -------- |
|
||||
| target | Long | 群员QQ号 |
|
||||
|
||||
#### AtAll
|
||||
|
||||
@ -517,6 +519,7 @@ Content-Type:multipart/form-data
|
||||
```
|
||||
|
||||
|
||||
|
||||
### 获取群列表
|
||||
|
||||
使用此方法获取bot的群列表
|
||||
@ -786,6 +789,8 @@ Content-Type:multipart/form-data
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
|
||||
### 获取群设置
|
||||
|
||||
使用此方法获取群设置
|
||||
@ -816,6 +821,7 @@ Content-Type:multipart/form-data
|
||||
```
|
||||
|
||||
|
||||
|
||||
### 修改群员资料
|
||||
|
||||
使用此方法修改群员资料(需要有相关限权)
|
||||
@ -856,6 +862,8 @@ Content-Type:multipart/form-data
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
|
||||
### 获取群员资料
|
||||
|
||||
使用此方法获取群员资料
|
||||
|
Loading…
Reference in New Issue
Block a user