wx.openSetting({
success (res) {
console.log(res.authSetting)
// res.authSetting = {
// "scope.userInfo": true,
// "scope.userLocation": true
// }
}
})
使用 openSetting 去往设置页面 为何没有设置是否授权保存到相册的权限?
目前有没有别的方法调用 设置 保存到相册?
2 个回答
设置界面只会出现小程序已经向用户请求过的权限
wx.authorize({ scope: 'scope.writePhotosAlbum', success () { } })
使用这个api来授权