收藏
回答

保存图片授权打开设置看不到相册设置?

开发版、体验版都能正常授权 就正式版不行

  savePosterTap() {

      let that = this

      // 向用户发起授权请求

      uni.authorize({

        scope: 'scope.writePhotosAlbum',

        success: (e) => {

          console.log(e)

          // 已授权

          that.downLoadImg()

        },

        fail: () => {

          // 拒绝授权,获取当前设置

          uni.getSetting({

            success: (result) => {

              console.log(result)

              if (!result.authSetting['scope.writePhotosAlbum']) {

                that.isAuth()

              }

            }

          })

        }

      })

    },

    downLoadImg() {

      let that = this

      uni.showLoading({

        title: '加载中'

      })

      uni.downloadFile({

        url: that.promote_img,

        success: ({ tempFilePath, statusCode }) => {

          uni.hideLoading()

          if (statusCode === 200) {

            uni.saveImageToPhotosAlbum({

              filePath: tempFilePath,

              success(e) {

                console.log(e)

                uni.$u.toast('保存成功')

                that.isshow = false

              },

              fail(e) {

                console.log(e)

                uni.$u.toast('保存失败')

                that.isshow = false

              }

            })

          }

        },

        fail: (error) => {

          console.log(error)

          uni.$u.toast('失败啦')

        }

      })

    },

    /*

     * 引导用户开启权限

     */

    isAuth() {

      uni.showModal({

        content: '检查到您没打开保存到相册的权限,是否现在去打开?',

        success: (res) => {

          if (res.confirm) {

            uni.openSetting({

              success: (result) => {

                console.log(result.authSetting)

              },

              fail: (e) => {

                console.log(e)

              }

            })

          }

        }

      })

    }

回答关注问题邀请回答
收藏

2 个回答

  • 小程序运营专员-yuan
    小程序运营专员-yuan
    2023-07-27

    你好,请提供具体appid进一步核实原因。

    2023-07-27
    有用
    回复
  • 农夫
    农夫
    2023-07-27

    隐私设置也加了


    2023-07-27
    有用
    回复 5
    • 大熊
      大熊
      2023-07-27
      用户隐私协议也更新了?
      2023-07-27
      回复
    • 农夫
      农夫
      2023-07-27回复大熊
      隐私协议是设置了的~不会每次上传都要更新吧
      2023-07-27
      回复
    • 大熊
      大熊
      2023-07-27回复农夫
      不需要每次,   你试着跟新下看看
      2023-07-27
      回复
    • 农夫
      农夫
      2023-07-27回复大熊
      我用把隐藏协议改了下提交审核了,过了在看看。谢谢
      上个版本都正常,新版本上传设置里面直接看不到添加到相册这一项了
      2023-07-27
      回复
    • 农夫
      农夫
      2023-07-27
      用户隐私保护指引设置 审核时没打开用户隐私协议
      2023-07-27
      回复
登录 后发表内容