智能话题

最近更新时间:2024-07-08 11:48:52

我的收藏

接口描述

描述:
查询单个云录制的智能话题,支持 OAuth 2.0鉴权调用,仅支持授权用户为商业版、企业版、教育版。
当该录制文件未开启相关智能化功能或内容处于生成中状态时,不支持调用。
请求方法:GET
接口请求域名:
https://api.meeting.qq.com/v1/smart/topics


输入参数

以下请求参数列表仅列出了接口请求参数,HTTP 请求头公共参数请参见签名验证章节的 公共参数说明
参数名称
必选
参数类型
参数描述
operator_id
String
操作者 ID。operator_id 必须与 operator_id_type 配合使用。根据 operator_id_type 的值,operator_id 代表不同类型。
operator_id_type
Integer
操作者 ID 类型:
1:userid
2:openid
record_file_id
String
录制文件 ID,录制列表接口会返回该 ID。
lang
String
翻译类型,默认原文展示。
"default":原文(不翻译)
"zh":简体中文
"en":英文
"ja":日语
pwd
String
录制文件的访问密码,非必填。

输出参数

参数名称
参数类型
参数描述
ai_topic_list
AiTopicList 对象数组
录制文件的智能话题列表。

AiTopicList 对象

参数名称
参数类型
参数描述
topic_id
String
话题唯一 ID。
topic_name
String
话题主题,返回 base64 编码后的结果。
topic_time
TopicTime 对象数组
话题的发言段落及时间段。

TopicTime 对象

参数名称
参数类型
参数描述
pid
String
段落 ID。
start_time
String
话题开始时间,单位毫秒。
end_time
String
话题结束时间,单位毫秒。

示例

输入示例

https://api.meeting.qq.com/v1/smart/topics?record_file_id=174532xxxxxxxx34913&operator_id_type=1&operator_id=xxxxxx

输出示例

{
"ai_topic_list": [
{
"topic_id": "93fc0xxxxxxxxxxxxxx33133",
"topic_name": "5Lixxxxxxxxxx6R",
"topic_time": [
{
"pid": "4",
"start_time": "311319",
"end_time": "405579"
},
{
"pid": "5",
"start_time": "405579",
"end_time": "590079"
}
]
}
]
}