Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/api/v1/msg.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ POST /v1/msg/send-message
使用 [v1/group/bot-list](group.html#获取群机器人列表) 获取机器人表单
找到一个你想要调用的机器人,提取其字段3(Instruction_data)一个数据组内的字段10,这是发送表单消息需要的,示例:

```原Json已压缩成行,示例内是已经格式化后的
```json
[
{
"key": 0,
Expand Down
4 changes: 2 additions & 2 deletions src/full.proto
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,11 @@ message GroupData {
int64 ban_until_timestamp = 18; // 群聊解禁时间戳,永久无此项,时区 Asia/Shanghai
bool top = 19; // 会话置顶
repeated string admin = 20; // 管理员列表
uint64 create_time = 21; // 群聊创建时间
int64 gag_until_timestamp = 21; // 禁言截止时间,时区 UTC+8,永久禁言为 int64 最大值~~小心别被 JS 坑了~~
string limited_msg_type = 22; // 被限制的消息类型,例如 1,2,3
string owner = 23; // 群主
bool recommandation = 24; // 是否加入群推荐
int64 field25 = 25; // 未知
bool is_gag = 25; // 是否被禁言
repeated string tag_old = 26; // 标签(旧版)
repeated Tag tag = 27;
string my_group_nickname = 28; // 我的群昵称
Expand Down