- 当前 Bug 的表现(可附上截图)
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
wx.showModal({
title: '再次发起授权',
cancelColor: '#999',
confirmColor: '#09BB07',
success: (res) => {
if (res.confirm) {
wx.authorize({
scope: 'scope.writePhotosAlbum',
success: () => {
// 用户已经同意小程序使用录音功能,后续调用 wx.startRecord 接口不会弹窗询问
this.showToast('成功')
},
fail: (err) => {
console.log(err)
this.showToast(err.errMsg) // errMsg: "authorize:fail 系统错误,错误码:-12006,auth deny"
}
})
}
}
})
下载图片和视频也是类似的报错信息,找不到答案,求解啊
用户登录授权是可以的,直接opensetting也正常,还有长按视频怎么可以像微信聊天的一样,
可以直接弹起actionsheet询问”保存视频“?
@nickname
我已经把代码啥都贴出来了,有木有群可以更好的沟通??
机型是iphonx,ios12.1
微信和开发者工具都是最新的
代码片段在上面
麻烦提供一下这种格式的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
具体是什么问题?麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)