微信小程序跳转视频号
aa(){
// finderUserName 从视频号后台拿
// 打开视频号主页
wx.openChannelsUserProfile({
finderUserName: "sphfCHdvTc9a0FLxx",
});
// 获取直播信息
wx.getChannelsLiveInfo({
finderUserName: "sphfCHdvTc9a0FLxx",
success: res => {
if (res.errMsg === "getChannelsLiveInfo:ok") {
console.log('1111111',res)
// this.setData({
// isLive:res.status
// })
console.log('noticeId',res.nonceId);
// 返回内容
// feedId:直播 feedId
// nonceId:直播 nonceId
// description:直播主题
// status:直播状态,2直播中,3直播结束
// headUrl:直播封面
// nickname:视频号昵称
}
},
fail: res => {
console.log(res)
}
})
},
bb(){
// 打开直播间
wx.openChannelsLive({
finderUserName: "sphfCHdvTc9a0FLxx",
feedId:'export/UzFfAgtgekIEAQAAAAAAPCQ2CpnCJQAAAAstQy6ubaLX4KHWvLEZgBPEnINQMwVUUdyDzNPgMIuuMtOVbMuYpzjNyxpj-14G',
nonceId: '7094985480186566196',
success: rs => {
onsole.log('2222',rs)
},
fail: fa => {
console.log('fa222',fa)
}
})
},
// 跳转指定视频号的某个视频
wx.openChannelsActivity({
finderUserName:'',
feedId:'',
})