2727 image_key: "欲发送图片key"
2828 msg_text1: "信息文本"
2929 msg_text2: "信息文本"
30- temp_text1 : ""
30+ form : "" // 表单消息
3131 temp_text2: ""
3232 temp_text3: ""
3333 temp_code1: 0
@@ -51,7 +51,7 @@ message send_message_send {
5151 string file_name = 4; // 欲发送文件名称
5252 string file_key = 5; // 欲发送文件key
5353 repeated string mentioned_id = 6; // @用户ID,可重复多个本属性
54- string temp_text1 = 7; // 未知
54+ string form = 7; // 表单消息
5555 string quote_msg_text = 8; // 引用信息文本
5656 string image = 9; // 欲发送图片key/url(expression/abcdef.jpg)
5757 string msg_text1 = 11; // 信息文本
@@ -176,7 +176,7 @@ msg {
176176 }
177177 msg_delete_time: 8888 // 消息撤回时间(毫秒时间戳)
178178 quote_msg_id: "abcdef" // 引用消息的ID
179- msg_order : 6666 // 消息序列
179+ msg_seq : 6666 // 消息序列
180180 edit_time: 1234 // 最后编辑时间
181181}
182182// ...
@@ -205,7 +205,7 @@ message list_message_by_seq {
205205 Cmd cmd = 7; // 指令
206206 uint64 msg_delete_time = 8; // 消息撤回时间
207207 string quote_msg_id = 9; // 引用消息ID
208- uint64 msg_order = 10;
208+ uint64 msg_seq = 10;
209209 uint64 edit_time = 12; // 最后编辑时间
210210
211211 message Cmd {
@@ -219,6 +219,7 @@ message list_message_by_seq {
219219 string image_url = 3; // 图像URL
220220 string file_name = 4; // 文件名
221221 string file_url = 5; // 文件URL
222+ string form = 7; // 表单消息
222223 string quote_msg_text = 8; // 引用消息文字
223224 string sticker_url = 9; // 表情URL
224225 string post_id = 10; // 文章ID
@@ -272,7 +273,7 @@ msg_id: "abcdef" // 从指定消息id开始,可不写
272273chat_type: 2 // 对象类型,1-用户 2-群聊 3-机器人
273274chat_id: "big" // 对象ID
274275```
275- ::: ProtoBuf数据结构
276+ ::: details ProtoBuf数据结构
276277``` proto
277278message list_message_send {
278279 uint64 msg_count = 2; // 获取消息数
@@ -320,7 +321,7 @@ msg {
320321 }
321322 msg_delete_time: 8888 // 消息撤回时间(毫秒时间戳)
322323 quote_msg_id: "abcdef" // 引用消息的ID
323- msg_order : 6666 // 消息序列
324+ msg_seq : 6666 // 消息序列
324325 edit_time: 1234 // 最后编辑时间
325326}
326327// ...
@@ -345,7 +346,7 @@ message Msg {
345346 Cmd cmd = 7; // 指令
346347 uint64 msg_delete_time = 8; // 消息撤回时间
347348 string quote_msg_id = 9; // 引用消息ID
348- uint64 msg_order = 10;
349+ uint64 msg_seq = 10;
349350 uint64 edit_time = 12; // 最后编辑时间
350351
351352 message Cmd {
@@ -359,6 +360,7 @@ message Msg {
359360 string image_url = 3;
360361 string file_name = 4;
361362 string file_url = 5;
363+ string form = 7; // 表单消息
362364 string quote_msg_text = 8; // 引用消息文字
363365 string sticker_url = 9; // 表情URL
364366 string post_id = 10; // 文章ID
0 commit comments