1.小程序直播插件live-player-plugin怎么禁止用户分享直播间 2.在app onShow方法里面可以获取到插件的分享参数,但是无法跳转页面。需要怎么处理? 以下为我跳转代码
//分享卡片入口场景才调用getShareParams接口获取以下参数
if (options.scene == 1007 || options.scene == 1008 || options.scene == 1044) {
livePlayer.getShareParams()
.then(res => {
console.log('get room id', res.room_id) // 房间号
console.log('get openid', res.openid) // 用户openid
console.log('get share openid', res.share_openid) // 分享者openid,分享卡片进入场景才有
console.log(res);
setTimeout(function () {
console.log("跳转reLaunch5");
wx.reLaunch({
url: '/pages/user/user'//这里无法跳转到指定页面
})},2500);
console.log('get custom params', res.custom_params) // 开发者在跳转进入直播间页面时,页面路径上携带的自定义参数,这里传回给开发者
}).catch(err => {
console.log('get share params', err)
})
}
现在创建直播间的时候可以禁止,插件1.1.4及以上
同样碰到这种问题,求解决
目前没有实现方案