@tencent-rtc/trtc-agent-skills 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CODEBUDDY.md +0 -24
- package/README.md +12 -0
- package/README.zh.md +12 -0
- package/bin/cli.js +18 -5
- package/knowledge-base/chat/web/index.yaml +168 -0
- package/knowledge-base/chat/web/path-d-signals.yaml +4 -0
- package/knowledge-base/docs/chat/debug/GenerateTestUserSig.js +23 -0
- package/knowledge-base/docs/chat/debug/lib-generate-test-usersig.min.js +1 -0
- package/knowledge-base/docs/chat/gen-usersig.md +129 -0
- package/knowledge-base/docs/chat/product.md +61 -0
- package/knowledge-base/docs/chat/restapi.md +227 -0
- package/knowledge-base/docs/chat/sdk/android/faq.md +7 -0
- package/knowledge-base/docs/chat/sdk/android/index.md +94 -0
- package/knowledge-base/docs/chat/sdk/flutter/faq.md +7 -0
- package/knowledge-base/docs/chat/sdk/flutter/index.md +83 -0
- package/knowledge-base/docs/chat/sdk/ios/faq.md +7 -0
- package/knowledge-base/docs/chat/sdk/ios/index.md +94 -0
- package/knowledge-base/docs/chat/sdk/web/faq.md +8 -0
- package/knowledge-base/docs/chat/sdk/web/index.md +97 -0
- package/knowledge-base/docs/chat/uikit/android/index.md +28 -0
- package/knowledge-base/docs/chat/uikit/flutter/index.md +17 -0
- package/knowledge-base/docs/chat/uikit/ios/index.md +28 -0
- package/knowledge-base/docs/chat/uikit/react/index.md +6 -0
- package/knowledge-base/docs/chat/uikit/uniapp/index.md +6 -0
- package/knowledge-base/docs/chat/uikit/vue3/index.md +6 -0
- package/knowledge-base/docs/chat/webhook.md +73 -0
- package/knowledge-base/products.yaml +2 -2
- package/knowledge-base/slices/chat/web/at-mention.md +417 -0
- package/knowledge-base/slices/chat/web/conversation-actions.md +178 -0
- package/knowledge-base/slices/chat/web/conversation-list.md +368 -0
- package/knowledge-base/slices/chat/web/detect-integration.md +36 -0
- package/knowledge-base/slices/chat/web/detect-style.md +88 -0
- package/knowledge-base/slices/chat/web/direct-chat-entry.md +210 -0
- package/knowledge-base/slices/chat/web/login-auth.md +244 -0
- package/knowledge-base/slices/chat/web/message-base-actions.md +273 -0
- package/knowledge-base/slices/chat/web/message-input.md +209 -0
- package/knowledge-base/slices/chat/web/message-list.md +532 -0
- package/knowledge-base/slices/chat/web/send-custom-message.md +189 -0
- package/knowledge-base/slices/chat/web/send-media.md +214 -0
- package/knowledge-base/slices/chat/web/state-api-skeleton.md +60 -0
- package/knowledge-base/slices/chat/web/style-guide.md +210 -0
- package/package.json +5 -1
- package/skills/trtc/SKILL.md +57 -23
- package/skills/trtc/hooks/topic_phase_gate.py +5 -0
- package/skills/trtc/tests/test_reporting_v2_docs_query.py +175 -0
- package/skills/trtc/tools/kb.py +130 -0
- package/skills/trtc/tools/reporting.py +23 -2
- package/skills/trtc/tools/reporting_v2.py +501 -0
- package/skills/trtc-ai-service/README.ja.md +209 -0
- package/skills/trtc-ai-service/README.md +23 -9
- package/skills/trtc-ai-service/README.zh-CN.md +23 -9
- package/skills/trtc-ai-service/SKILL.md +4 -4
- package/skills/trtc-chat/.docs-query.yaml +9 -0
- package/skills/trtc-chat/SKILL.md +186 -0
- package/skills/trtc-chat/docs/SKILL.md +31 -0
- package/skills/trtc-chat/flows/maintenance.md +19 -0
- package/skills/trtc-chat/flows/onboarding.md +79 -0
- package/skills/trtc-chat/references/01-detect-project.md +136 -0
- package/skills/trtc-chat/references/02-path-a-questions.md +182 -0
- package/skills/trtc-chat/references/02-path-a-scaffold-template.md +59 -0
- package/skills/trtc-chat/references/02-path-a-script.md +266 -0
- package/skills/trtc-chat/references/02-path-a-templates.md +159 -0
- package/skills/trtc-chat/references/03-path-b-script.md +226 -0
- package/skills/trtc-chat/references/04-path-c-script.md +95 -0
- package/skills/trtc-chat/references/04-uikit-redirect.md +32 -0
- package/skills/trtc-chat/references/05-path-d-script.md +735 -0
- package/skills/trtc-chat/references/05-slice-loading.md +139 -0
- package/skills/trtc-chat/references/06-a-defensive-coding.md +139 -0
- package/skills/trtc-chat/references/06-hard-rules.md +190 -0
- package/skills/trtc-chat/references/08-state-config.md +231 -0
- package/skills/trtc-chat/references/09-troubleshoot.md +91 -0
- package/skills/trtc-chat/references/10-references-index.md +63 -0
- package/skills/trtc-chat/references/11-what-to-do-next-template.md +338 -0
- package/skills/trtc-chat/references/12-page-composition.md +73 -0
- package/skills/trtc-chat/references/13-reporting.md +166 -0
- package/skills/trtc-chat/references/14-official-docs.md +169 -0
- package/skills/trtc-chat/references/execution-units.yaml +27 -0
- package/skills/trtc-chat/references/vue3.md +104 -0
- package/skills/trtc-chat/tests/test_chat_bundle_contract.py +330 -0
- package/skills/trtc-chat/tools/__init__.py +5 -0
- package/skills/trtc-chat/tools/_delegate.py +32 -0
- package/skills/trtc-chat/tools/flow.py +8 -0
- package/skills/trtc-chat/tools/kb.py +8 -0
- package/skills/trtc-chat/tools/reporting_v2.py +8 -0
- package/skills/trtc-chat/tools/session.py +8 -0
- package/hooks/__pycache__/cursor-adapter.cpython-313.pyc +0 -0
- package/skills/trtc/hooks/__pycache__/report_prompt.cpython-313.pyc +0 -0
- package/skills/trtc/tools/__pycache__/__init__.cpython-313.pyc +0 -0
- package/skills/trtc/tools/__pycache__/query_classifier.cpython-313.pyc +0 -0
- package/skills/trtc/tools/__pycache__/reporting.cpython-313.pyc +0 -0
- package/skills/trtc/tools/__pycache__/search.cpython-313.pyc +0 -0
- package/skills/trtc/tools/__pycache__/session.cpython-313.pyc +0 -0
- package/skills/trtc-conference/tests/__pycache__/test_conference_onboarding_contract.cpython-313-pytest-9.0.2.pyc +0 -0
- package/skills/trtc-conference/tests/__pycache__/test_conference_topic_flow_contract.cpython-313-pytest-9.0.2.pyc +0 -0
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
# Web — SDK 官方文档 URL 映射
|
|
2
|
+
|
|
3
|
+
> 知识咨询时 `read_file` 本文件,按问题匹配领域和子问题,获取目标 URL。检索方式和兜底策略见 `references/14-official-docs.md`。
|
|
4
|
+
|
|
5
|
+
## A — SDK 集成和初始化(Web & 小程序)
|
|
6
|
+
|
|
7
|
+
| 子问题 | 目标文档 |
|
|
8
|
+
|--------|---------|
|
|
9
|
+
| Web 端集成和初始化(V4) | `https://cloud.tencent.com/document/product/269/75285` |
|
|
10
|
+
| 小程序端集成和初始化(V4) | `https://cloud.tencent.com/document/product/269/117335` |
|
|
11
|
+
|
|
12
|
+
## B — 登录
|
|
13
|
+
|
|
14
|
+
| 子问题 | 目标文档 |
|
|
15
|
+
|--------|---------|
|
|
16
|
+
| 登录(`login` API) | `https://cloud.tencent.com/document/product/269/75295` |
|
|
17
|
+
| 登出(`logout` API) | `https://cloud.tencent.com/document/product/269/75295` |
|
|
18
|
+
|
|
19
|
+
## C — SDK API 使用
|
|
20
|
+
|
|
21
|
+
| 子问题 | 目标文档 |
|
|
22
|
+
|--------|---------|
|
|
23
|
+
| SDK 消息类型介绍 | `https://cloud.tencent.com/document/product/269/75314` |
|
|
24
|
+
| 文本消息(createTextMessage → sendMessage) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
25
|
+
| 群 @ 消息(createTextAtMessage → sendMessage) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
26
|
+
| 图片消息(createImageMessage → sendMessage) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
27
|
+
| 语音消息(createVoiceMessage → sendMessage) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
28
|
+
| 视频消息(createVideoMessage → sendMessage) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
29
|
+
| 文件消息(createFileMessage → sendMessage) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
30
|
+
| 自定义消息(createCustomMessage → sendMessage) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
31
|
+
| 表情消息(createFaceMessage → sendMessage) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
32
|
+
| 地理位置消息(createLocationMessage → sendMessage) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
33
|
+
| 合并消息(createMergerMessage → sendMessage) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
34
|
+
| 逐条转发消息(createForwardMessage → sendMessage) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
35
|
+
| 发送消息参数配置(sendMessage 参数) | `https://cloud.tencent.com/document/product/269/75316` |
|
|
36
|
+
| 接收消息(EVENT.MESSAGE_RECEIVED) | `https://cloud.tencent.com/document/product/269/75319` |
|
|
37
|
+
| 获取历史消息(getMessageList) | `https://cloud.tencent.com/document/product/269/75322` |
|
|
38
|
+
| 修改消息(modifyMessage) | `https://cloud.tencent.com/document/product/269/75328` |
|
|
39
|
+
| 删除消息(deleteMessage) | `https://cloud.tencent.com/document/product/269/75333` |
|
|
40
|
+
| 清空消息(clearHistoryMessage) | `https://cloud.tencent.com/document/product/269/84438` |
|
|
41
|
+
| 撤回消息(revokeMessage) | `https://cloud.tencent.com/document/product/269/75338` |
|
|
42
|
+
| 在线消息 | `https://cloud.tencent.com/document/product/269/75341` |
|
|
43
|
+
| 已读回执(单聊/群聊) | `https://cloud.tencent.com/document/product/269/75344` |
|
|
44
|
+
| 查询消息(findMessage) | `https://cloud.tencent.com/document/product/269/75348` |
|
|
45
|
+
| 群定向消息 | `https://cloud.tencent.com/document/product/269/82987` |
|
|
46
|
+
| 消息免打扰(setMessageRemindType) | `https://cloud.tencent.com/document/product/269/75354` |
|
|
47
|
+
| 消息扩展(投票/接龙场景) | `https://cloud.tencent.com/document/product/269/84439` |
|
|
48
|
+
| 消息回应(表情回应) | `https://cloud.tencent.com/document/product/269/98758` |
|
|
49
|
+
| 消息翻译(translateText) | `https://cloud.tencent.com/document/product/269/95414` |
|
|
50
|
+
| 语音转文字(convertVoiceToText) | `https://cloud.tencent.com/document/product/269/106622` |
|
|
51
|
+
| 流式消息(TYPES.MSG_STREAM) | `https://cloud.tencent.com/document/product/269/131979` |
|
|
52
|
+
| 会话存储限制 | `https://cloud.tencent.com/document/product/269/75364` |
|
|
53
|
+
| 会话列表(getConversationList) | `https://cloud.tencent.com/document/product/269/75367` |
|
|
54
|
+
| 会话资料(getConversationProfile) | `https://cloud.tencent.com/document/product/269/75370` |
|
|
55
|
+
| 会话未读数(getTotalUnreadMessageCount) | `https://cloud.tencent.com/document/product/269/75373` |
|
|
56
|
+
| 置顶会话(pinConversation) | `https://cloud.tencent.com/document/product/269/75376` |
|
|
57
|
+
| 删除会话(deleteConversation) | `https://cloud.tencent.com/document/product/269/75379` |
|
|
58
|
+
| 会话草稿(setConversationDraft) | `https://cloud.tencent.com/document/product/269/95424` |
|
|
59
|
+
| 会话标记(markConversation) | `https://cloud.tencent.com/document/product/269/79378` |
|
|
60
|
+
| 会话分组 | `https://cloud.tencent.com/document/product/269/79379` |
|
|
61
|
+
| 群组类型和不同群类型能力介绍 | `https://cloud.tencent.com/document/product/269/75697` |
|
|
62
|
+
| 普通群管理 | `https://cloud.tencent.com/document/product/269/75395` |
|
|
63
|
+
| 群资料(getGroupProfile / updateGroupProfile) | `https://cloud.tencent.com/document/product/269/75398` |
|
|
64
|
+
| 群成员管理 | `https://cloud.tencent.com/document/product/269/75401` |
|
|
65
|
+
| 群成员资料 | `https://cloud.tencent.com/document/product/269/75404` |
|
|
66
|
+
| 群自定义属性 | `https://cloud.tencent.com/document/product/269/75407` |
|
|
67
|
+
| 群计数器(groupCounter) | `https://cloud.tencent.com/document/product/269/86617` |
|
|
68
|
+
| 社群(Community / 话题) | `https://cloud.tencent.com/document/product/269/75410` |
|
|
69
|
+
| 用户资料(getMyProfile / getUserProfile / updateMyProfile) | `https://cloud.tencent.com/document/product/269/75417` |
|
|
70
|
+
| 用户状态(getUserStatus / subscribeUserStatus) | `https://cloud.tencent.com/document/product/269/78125` |
|
|
71
|
+
| 好友管理 | `https://cloud.tencent.com/document/product/269/75420` |
|
|
72
|
+
| 好友分组 | `https://cloud.tencent.com/document/product/269/75423` |
|
|
73
|
+
| 用户黑名单 | `https://cloud.tencent.com/document/product/269/75426` |
|
|
74
|
+
| 关注和粉丝 | `https://cloud.tencent.com/document/product/269/105307` |
|
|
75
|
+
| 云端搜索消息(searchCloudMessages) | `https://cloud.tencent.com/document/product/269/114754` |
|
|
76
|
+
| 云端搜索用户(searchUsers) | `https://cloud.tencent.com/document/product/269/114757` |
|
|
77
|
+
| 云端搜索群组(searchGroups) | `https://cloud.tencent.com/document/product/269/114760` |
|
|
78
|
+
| 云端搜索群成员(searchGroupMembers) | `https://cloud.tencent.com/document/product/269/114763` |
|
|
79
|
+
|
|
80
|
+
## D — 版本升级指南
|
|
81
|
+
|
|
82
|
+
| 子问题 | 目标文档 |
|
|
83
|
+
|--------|---------|
|
|
84
|
+
| V4 版本日志 / Changelog | `https://cloud.tencent.com/document/product/269/38492` |
|
|
85
|
+
| V3 → V4 版本迁移 | `https://web.sdk.qcloud.com/im/doc/v3/zh-cn/tutorial-04-comparison-v4.html` |
|
|
86
|
+
| V3 → V4 破坏性变更 | `https://web.sdk.qcloud.com/im/doc/v3/zh-cn/tutorial-04-comparison-v4.html` |
|
|
87
|
+
| V3 版本日志 / Changelog | `https://cloud.tencent.com/document/product/269/124855` |
|
|
88
|
+
| V2 → V3 版本迁移 | `https://web.sdk.qcloud.com/im/doc/v3/zh-cn/tutorial-06-comparison.html` |
|
|
89
|
+
| V2 → V3 破坏性变更 | `https://web.sdk.qcloud.com/im/doc/v3/zh-cn/tutorial-07-breakingchanges.html` |
|
|
90
|
+
|
|
91
|
+
## E — 错误码(SDK 错误码)
|
|
92
|
+
|
|
93
|
+
> 错误码查询策略见 `references/14-official-docs.md §14.4`
|
|
94
|
+
|
|
95
|
+
| 子问题 | 目标文档 |
|
|
96
|
+
|--------|---------|
|
|
97
|
+
| Web SDK 错误码表(1xxx-8xxx 范围) | `https://web.sdk.qcloud.com/im/doc/v3/zh-cn/module-ERROR_CODE.html` |
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Android UIKit — 官方文档 URL 映射
|
|
2
|
+
|
|
3
|
+
## 集成指引
|
|
4
|
+
| 子问题 | 目标文档 |
|
|
5
|
+
|--------|---------|
|
|
6
|
+
| 集成指引(Android-View) | `https://cloud.tencent.com/document/product/269/37059` |
|
|
7
|
+
| 集成指引(Android-Compose) | `https://cloud.tencent.com/document/product/269/125127` |
|
|
8
|
+
|
|
9
|
+
## 组件库功能 (Android-View)
|
|
10
|
+
| 子问题 | 目标文档 |
|
|
11
|
+
|--------|---------|
|
|
12
|
+
| 会话列表(TUIConversation) | `https://cloud.tencent.com/document/product/269/37190` |
|
|
13
|
+
| 消息界面(TUIChat) | `https://cloud.tencent.com/document/product/269/37190` |
|
|
14
|
+
| 联系人列表(TUIContact) | `https://cloud.tencent.com/document/product/269/37190` |
|
|
15
|
+
| 群组管理(TUIGroup) | `https://cloud.tencent.com/document/product/269/37190` |
|
|
16
|
+
| 搜索组件(TUISearch) | `https://cloud.tencent.com/document/product/269/37190` |
|
|
17
|
+
| 自定义界面风格(TUIThemeManager) | `https://cloud.tencent.com/document/product/269/79704` |
|
|
18
|
+
|
|
19
|
+
## 组件库功能 (Android-Compose)
|
|
20
|
+
| 子问题 | 目标文档 |
|
|
21
|
+
|--------|---------|
|
|
22
|
+
| 会话列表(ConversationList) | `https://cloud.tencent.com/document/product/269/125129` |
|
|
23
|
+
| 聊天设置(ChatSetting) | `https://cloud.tencent.com/document/product/269/125131` |
|
|
24
|
+
| 消息列表(MessageList) | `https://cloud.tencent.com/document/product/269/125133` |
|
|
25
|
+
| 消息输入(MessageInput) | `https://cloud.tencent.com/document/product/269/125133` |
|
|
26
|
+
| 联系人列表(ContactList) | `https://cloud.tencent.com/document/product/269/125137` |
|
|
27
|
+
| 搜索(Search) | `https://cloud.tencent.com/document/product/269/128805` |
|
|
28
|
+
| 主题定制(ThemeState)| `https://cloud.tencent.com/document/product/269/125139` |
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Flutter UIKit — 官方文档 URL 映射
|
|
2
|
+
|
|
3
|
+
## 集成指引
|
|
4
|
+
| 子问题 | 目标文档 |
|
|
5
|
+
|--------|---------|
|
|
6
|
+
| 集成指引 | `https://cloud.tencent.com/document/product/269/125903` |
|
|
7
|
+
|
|
8
|
+
## 组件库功能
|
|
9
|
+
| 子问题 | 目标文档 |
|
|
10
|
+
|--------|---------|
|
|
11
|
+
| 会话列表(ConversationList) | `https://cloud.tencent.com/document/product/269/125904` |
|
|
12
|
+
| 聊天设置(ChatSetting) | `https://cloud.tencent.com/document/product/269/125905` |
|
|
13
|
+
| 消息列表(MessageList) | `https://cloud.tencent.com/document/product/269/125906` |
|
|
14
|
+
| 消息输入(MessageInput) | `https://cloud.tencent.com/document/product/269/125907` |
|
|
15
|
+
| 联系人列表(ContactList) | `https://cloud.tencent.com/document/product/269/125908` |
|
|
16
|
+
| 搜索(Search) | `https://cloud.tencent.com/document/product/269/127682` |
|
|
17
|
+
| 主题定制(ThemeState) | `https://cloud.tencent.com/document/product/269/125909` |
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# iOS UIKit — 官方文档 URL 映射
|
|
2
|
+
|
|
3
|
+
## 集成指引
|
|
4
|
+
| 子问题 | 目标文档 |
|
|
5
|
+
|--------|---------|
|
|
6
|
+
| 集成指引(UIKit) | `https://cloud.tencent.com/document/product/269/125903` |
|
|
7
|
+
| 集成指引(SwiftUI) | `https://cloud.tencent.com/document/product/269/124935` |
|
|
8
|
+
|
|
9
|
+
## 组件库功能 (UIKit)
|
|
10
|
+
| 子问题 | 目标文档 |
|
|
11
|
+
|--------|---------|
|
|
12
|
+
| 会话列表(TUIConversation) | `https://cloud.tencent.com/document/product/269/37190` |
|
|
13
|
+
| 消息界面(TUIChat) | `https://cloud.tencent.com/document/product/269/37190` |
|
|
14
|
+
| 联系人列表(TUIContact) | `https://cloud.tencent.com/document/product/269/37190` |
|
|
15
|
+
| 群组管理(TUIGroup) | `https://cloud.tencent.com/document/product/269/37190` |
|
|
16
|
+
| 搜索组件(TUISearch) | `https://cloud.tencent.com/document/product/269/37190` |
|
|
17
|
+
| 自定义界面风格(TUIThemeManager) | `https://cloud.tencent.com/document/product/269/79705` |
|
|
18
|
+
|
|
19
|
+
## 组件库功能 (SwiftUI)
|
|
20
|
+
| 子问题 | 目标文档 |
|
|
21
|
+
|--------|---------|
|
|
22
|
+
| 会话列表(ConversationList) | `https://cloud.tencent.com/document/product/269/124936` |
|
|
23
|
+
| 聊天设置(ChatSetting) | `https://cloud.tencent.com/document/product/269/124937` |
|
|
24
|
+
| 消息列表(MessageList) | `https://cloud.tencent.com/document/product/269/124938` |
|
|
25
|
+
| 消息输入(MessageInput) | `https://cloud.tencent.com/document/product/269/124939` |
|
|
26
|
+
| 联系人列表(ContactList) | `https://cloud.tencent.com/document/product/269/124940` |
|
|
27
|
+
| 搜索(Search) | `https://cloud.tencent.com/document/product/269/128598` |
|
|
28
|
+
| 主题定制(ThemeState) | `https://cloud.tencent.com/document/product/269/124942` |
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# 服务端回调(Webhook)— 官方文档 URL 映射
|
|
2
|
+
|
|
3
|
+
## 回调概览
|
|
4
|
+
|
|
5
|
+
| 子问题 | 目标文档 |
|
|
6
|
+
|--------|---------|
|
|
7
|
+
| 第三方回调概览 / 配置方法 / 规范 | `https://cloud.tencent.com/document/product/269/1522` |
|
|
8
|
+
|
|
9
|
+
## 在线状态相关回调
|
|
10
|
+
|
|
11
|
+
| 子问题 | 目标文档 |
|
|
12
|
+
|--------|---------|
|
|
13
|
+
| 用户状态变更回调 | `https://cloud.tencent.com/document/product/269/2570` |
|
|
14
|
+
| 更新用户资料后回调 | `https://cloud.tencent.com/document/product/269/76489` |
|
|
15
|
+
|
|
16
|
+
## 资料关系链相关回调
|
|
17
|
+
|
|
18
|
+
| 子问题 | 目标文档 |
|
|
19
|
+
|--------|---------|
|
|
20
|
+
| 添加好友之前回调 | `https://cloud.tencent.com/document/product/269/61698` |
|
|
21
|
+
| 添加好友回应之前回调 | `https://cloud.tencent.com/document/product/269/61699` |
|
|
22
|
+
| 添加好友之后回调 | `https://cloud.tencent.com/document/product/269/1657` |
|
|
23
|
+
| 删除好友之后回调 | `https://cloud.tencent.com/document/product/269/1659` |
|
|
24
|
+
| 添加黑名单之后回调 | `https://cloud.tencent.com/document/product/269/1660` |
|
|
25
|
+
| 删除黑名单之后回调 | `https://cloud.tencent.com/document/product/269/1661` |
|
|
26
|
+
|
|
27
|
+
## 关注与粉丝相关回调
|
|
28
|
+
|
|
29
|
+
| 子问题 | 目标文档 |
|
|
30
|
+
|--------|---------|
|
|
31
|
+
| 关注用户之后回调 | `https://cloud.tencent.com/document/product/269/118915` |
|
|
32
|
+
| 取关用户之后回调 | `https://cloud.tencent.com/document/product/269/118916` |
|
|
33
|
+
|
|
34
|
+
## 单聊消息相关回调
|
|
35
|
+
|
|
36
|
+
| 子问题 | 目标文档 |
|
|
37
|
+
|--------|---------|
|
|
38
|
+
| 设置单聊消息扩展回调 | `https://cloud.tencent.com/document/product/269/126475` |
|
|
39
|
+
| 发单聊消息之前回调 | `https://cloud.tencent.com/document/product/269/1632` |
|
|
40
|
+
| 发单聊消息之后回调 | `https://cloud.tencent.com/document/product/269/2716` |
|
|
41
|
+
| 单聊消息已读上报后回调 | `https://cloud.tencent.com/document/product/269/61696` |
|
|
42
|
+
| 单聊消息撤回后回调 | `https://cloud.tencent.com/document/product/269/61697` |
|
|
43
|
+
| 单聊单条消息已读回执之后回调 | `https://cloud.tencent.com/document/product/269/128223` |
|
|
44
|
+
| 单聊消息编辑之后回调 | `https://cloud.tencent.com/document/product/269/128224` |
|
|
45
|
+
|
|
46
|
+
## 群组系统相关回调
|
|
47
|
+
|
|
48
|
+
| 子问题 | 目标文档 |
|
|
49
|
+
|--------|---------|
|
|
50
|
+
| 设置群消息扩展回调 | `https://cloud.tencent.com/document/product/269/126476` |
|
|
51
|
+
| 创建群组之前回调 | `https://cloud.tencent.com/document/product/269/1662` |
|
|
52
|
+
| 创建群组之后回调 | `https://cloud.tencent.com/document/product/269/1663` |
|
|
53
|
+
| 申请入群之前回调 | `https://cloud.tencent.com/document/product/269/1665` |
|
|
54
|
+
| 拉人入群之前回调 | `https://cloud.tencent.com/document/product/269/1666` |
|
|
55
|
+
| 新成员入群之后回调 | `https://cloud.tencent.com/document/product/269/1667` |
|
|
56
|
+
| 群成员离开之后回调 | `https://cloud.tencent.com/document/product/269/1668` |
|
|
57
|
+
| 群内发言之前回调 | `https://cloud.tencent.com/document/product/269/1619` |
|
|
58
|
+
| 群内发言之后回调 | `https://cloud.tencent.com/document/product/269/2661` |
|
|
59
|
+
| 群组满员之后回调 | `https://cloud.tencent.com/document/product/269/1669` |
|
|
60
|
+
| 群组解散之后回调 | `https://cloud.tencent.com/document/product/269/1670` |
|
|
61
|
+
| 群组资料变动之后回调 | `https://cloud.tencent.com/document/product/269/2930` |
|
|
62
|
+
| 撤回群消息之后回调 | `https://cloud.tencent.com/document/product/269/73141` |
|
|
63
|
+
| 直播群成员在线状态回调 | `https://cloud.tencent.com/document/product/269/76156` |
|
|
64
|
+
| 发送群聊消息异常回调 | `https://cloud.tencent.com/document/product/269/78619` |
|
|
65
|
+
| 创建话题之前回调 | `https://cloud.tencent.com/document/product/269/78206` |
|
|
66
|
+
| 创建话题之后回调 | `https://cloud.tencent.com/document/product/269/78207` |
|
|
67
|
+
| 解散话题之后回调 | `https://cloud.tencent.com/document/product/269/78208` |
|
|
68
|
+
| 话题资料修改之后回调 | `https://cloud.tencent.com/document/product/269/78209` |
|
|
69
|
+
| 群成员资料变更后回调 | `https://cloud.tencent.com/document/product/269/105353` |
|
|
70
|
+
| 群自定义属性变更后回调 | `https://cloud.tencent.com/document/product/269/105354` |
|
|
71
|
+
| 已读回执后回调 | `https://cloud.tencent.com/document/product/269/105355` |
|
|
72
|
+
| 转让群主后回调 | `https://cloud.tencent.com/document/product/269/105356` |
|
|
73
|
+
| 群内消息编辑后回调 | `https://cloud.tencent.com/document/product/269/129193` |
|
|
@@ -10,8 +10,8 @@ products:
|
|
|
10
10
|
IM、消息记录、已读回执、@提醒、撤回消息、推送、离线消息、多端登录。
|
|
11
11
|
llms_file: https://trtc.io/llms/chat.txt
|
|
12
12
|
public_release:
|
|
13
|
-
supported: []
|
|
14
|
-
planned: [
|
|
13
|
+
supported: [web]
|
|
14
|
+
planned: [ios, android, flutter, electron]
|
|
15
15
|
|
|
16
16
|
- id: call
|
|
17
17
|
name: Call(音视频通话)
|