此接口将调起直播间回放页面
权限说明
调用示例
wx.invoke('replayLiving', {
"livingId": "LIVINGID",
}, function(res) {
if (res.err_msg != "replayLiving:ok") {
// 错误处理
}
});
入参说明
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
livingId | 是 | string | 直播ID |
返回说明
参数 | 类型 | 说明 |
---|---|---|
res | Obj | 返回信息 |
res.err_msg | string | 执行结果。"replayLiving:ok" 表示执行成功,否则表示报错信息 |
错误列表
res.err_msg | 说明 |
---|---|
replayLiving:ok | 执行成功 |
replayLiving:fail no permission | 1. 必须先成功调用agentConfig 2. 应用需具有直播权限 |
replayLiving:fail invalid living id | 不合法的直播ID |
replayLiving:fail not allow to cross corp | 不可跨企业使用直播ID |
replayLiving:fail not allow to cross app | 不可跨应用使用直播ID |
replayLiving:fail living has no replay | 不存在直播回放 |
replayLiving:fail replay is beging creating | 正在直播中,或回放正在生成中,稍后观看回放 |
replayLiving:fail create replay failed | 回放创建失败 |
replayLiving:fail invalid parameter | 参数不合法 |