在小程序中使用wx.openStickerSetView无法跳转到微信表情专辑,如何解决?
背景:通过点击按钮实现微信小程序跳转到微信表情包专辑,让用户领取表情包 获取到的URL是已经通过审核的表情包,在表情公众平台获取到的链接,直接通过wx.openStickerSetView无法实现跳转功能 目前解决办法是通过web view进行跳转,但是会有空白中间页 这个API目前还是没法使用吗,还是说我的使用方式不正确? 报错: "openStickerSetView:fail invalid url"
代码: function openStickerSetView(link) {
wx.openStickerSetView({
url: link,
success(res) {
console.log('[ openStickerSetView res ] >', res)
},
fail(error) {
console.log('[ openStickerSetView error ] >', error)
},
})
}