获取对话内容

请求URL:

GET/vcs_api/openapi/sessionDialogue.php

参数:

参数名 是否必须 类型 说明
access string 公司账号
token string 分配的唯一调用秘钥
task_id string 任务ID
call_session string 会话标识 --任务详情有返回
view_type string 视图类型 web、json 默认web

请求示例:

web页面方式:

web页面展示,可以设置ifrmae的 【src】 为
http://host/vcs_api/openapi/sessionDialogue.php?access=xxx&token=xxx&task_id=xxx&call_session=xxx

json数据方式:

http://host/vcs_api/openapi/sessionDialogue.php?access=xxx&token=xxx&task_id=xxx&call_session=xxx&view_type=json

返回示例:

web正确时页面:

json正确时返回:

{
	"code": 0,
	"data": {
		"list": [{
			"ui_type": "asr",
			"weiqi_type": null,
			"text": "你好",
			"create_time": "2019-08-22 18:02:24",
			"responsetime": "334ms",
			"weiqiresponsetime": "",
			"recordfile": "\/ai_record\/speak\/19\/08\/22\/e6270c660f66f0e6fc3a2d532cc6bd25_1566468142_18219103020.wav",
			"weiqi_code": "jrcs_1-01"
		}, {
			"ui_type": "nlp",
			"record_file": null,
			"weiqi_type": "jrcs_1-01",
			"text": "您好,我是坐席代表,请问您是女士吗。",
			"create_time": "2019-08-22 18:02:26",
			"responsetime": "",
			"weiqiresponsetime": "2240ms"
		}],
		"tag": {
			"task_mark": null,
			"classification": "A"
		},
		"file_path": "\/monitor\/2019\/08\/22\/e6270c660f66f0e6fc3a2d532cc6bd25_18219103020.wav"
	}
}

错误时返回:

{
    "code": "1",
    "info": "公司账号错误"
}

返回参数说明:

参数名 类型 说明
code string 返回码,0为正常,非0为请求失败
info string 接口请求中文说明
data array 返回的数据集
∟file_path string 任务号码录音文件
∟tag string 标记
∟ ∟ classification string 分类 AA A B C D
∟list array 数据列表
∟ ∟ui_type string 对话的类型 nlp、 asr
∟ ∟recordfile string 对话录音
∟ ∟create_time string 对话时间
∟ ∟text string 转换的文本
∟ ∟responsetime string asr处理时长
∟ ∟weiqiresponsetime string nlp处理时长
∟ ∟weiqi_code string asr编号标识
∟ ∟weiqi_type string nlp编号标识

备注:

  • 更多返回错误代码请看首页的错误代码描述