saveImg() {
const that = this
wx.downloadFile({
url: that.imgAdv,
success: (res) => {
if (wx.shareImageToGroup) {
wx.shareImageToGroup({
imagePath: res.tempFilePath,
success: (resf) => {
console.log('success', resf)
that.hidePop()
},
fail: (error) => {
console.log('error', error)
that.$Error(error.errMsg)
}
})
} else {
this.$Error('请升级您的小程序版本')
}
}
})
}
一直报错说没有权限,不知道什么权限没开 怎么开?小程序也认证了,我们用的是 kbone 框架 不知道有没有什么影响

参考开发指南文档:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/chatTool.html