报错信息: chooseMedia:fail privacy permission is not authorized
源代码:
wx.chooseMedia({
count: 1,
mediaType: ['image'],
sourceType: ['album'],
success(res) {
console.log('choose res:', res);
const tempFilePaths = res.tempFiles[0].tempFilePath;
that.setData({
selectedImage: tempFilePaths, // 保存选中的图片路径
});
console.log('selected image:', that.data.selectedImage);
},
fail(res) {
console.log('fail', res);
}
});
输出截图:
2023年9月15日之前,此功能逻辑只对开发版/体验版生效,开发者请尽快进行隐私弹窗适配、发版。2023年9月15日之后,将对正式版生效,详情可见《关于小程序隐私保护指引设置的公告》。
我也是这个问题,咋回事啊,突然这样子
在小程序管理后台,完善一下相对应的用户隐私保护协议
看一下这个适配一下,基础库如果是2.33.0以上就得适配了
https://developers.weixin.qq.com/community/develop/doc/00042e3ef54940ce8520e38db61801
这是啥问题啊?之前还没毛病,突然报这个错