小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序直播已经可以开播。
系统需要获取进入直播间的用户信息比如openid,还有客户进入直播间的时间和退出直播间的时间,好在这些数据上做些统计分析。从小程序的后台只能看到观看直播的人数,其他的信息都看不到,请问通过什么方式可以获取到类似的数据?
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
https://developers.weixin.qq.com/miniprogram/dev/framework/liveplayer/component-api.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
请问楼主,获取用户信息进行统计的,这个你这边解决了吗?
https://developers.weixin.qq.com/miniprogram/dev/framework/liveplayer/live-player-plugin.html
app.js onShow 事件 if (options.scene == 1007 || options.scene == 1008 || options.scene == 1044){ livePlayer.getShareParams() .then(res => { console.log('get room id', res); // room_id 房间号 openid 用户openid share_openid 分享者openid,分享卡片进入场景才有 custom_params 开发者在跳转进入直播间页面时,页面路径上携带的自定义参数,这里传回给开发者 }) } 至于进入时间和退出时间嘛 目前官方尚未提供
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
https://developers.weixin.qq.com/miniprogram/dev/framework/liveplayer/component-api.html
请问楼主,获取用户信息进行统计的,这个你这边解决了吗?
https://developers.weixin.qq.com/miniprogram/dev/framework/liveplayer/live-player-plugin.html
app.js onShow 事件 if (options.scene == 1007 || options.scene == 1008 || options.scene == 1044){ livePlayer.getShareParams() .then(res => { console.log('get room id', res); // room_id 房间号 openid 用户openid share_openid 分享者openid,分享卡片进入场景才有 custom_params 开发者在跳转进入直播间页面时,页面路径上携带的自定义参数,这里传回给开发者 }) } 至于进入时间和退出时间嘛 目前官方尚未提供