We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7732e61 commit 84a5bcfCopy full SHA for 84a5bcf
1 file changed
src/api/wss/chat-ws-go.jwzhd.com.md
@@ -374,5 +374,23 @@ message edit_message {
374
}
375
376
```
377
+:::
378
-:::
379
+## 接受邀请消息
380
+::: tip 提示
381
+本项只提供了“有人邀请我”的这种状态,并没有提供相关信息,如邀请人、群聊ID等,建议配合邀请列表进行使用。
382
383
+```ProtoBuf
384
+info {
385
+ seq: "123123123123123123123" // 请求标识码
386
+ cmd: "invite_apply" // 邀请信息推送
387
+}
388
+```
389
+::: details ProtoBuf数据结构
390
+```proto
391
+message INFO {
392
+ string seq = 1; // 请求标识码
393
+ string cmd = 2; // 操作类型
394
395
396
0 commit comments