收藏
回答

小程序申请手机麦克风授权,打开授权页面,没有授权麦克风权限选项,导致无法正常授权麦克风

框架类型 问题类型 终端类型 微信版本 基础库版本
小程序 Bug 微信iOS客户端 8.0.37 1.32.0
      wx.authorize({
        scope: "scope.record",
        success () {
          that.start();
        },
        fail () {
          wx.showModal({
            title: "",
            content: auth_fail_message,
            showCancel: true,
            confirmColor: "#034d8a",
            confirmText: "去授权",
            success: function (res) {
              console.log("res:", res);
              if (res.confirm) {
                wx.openSetting({
                  success: (e) => {
                    console.log("授权打开成功", e);
                  },
                  fail: (e) => {
                    console.log("授权打开失败", e);
                  }
                })
              }
            }
          })
        }
      })

小程序需要申请手机麦克风授权,但是手机打开授权页面,没有授权麦克风权限选项,导致无法正常授权麦克风

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

2 个回答

  • 大熊
    大熊
    2023-07-17

    更新下用户隐私协议然后再试试

    2023-07-17
    有用 1
    回复
  • jetmie
    jetmie
    2023-07-16

    手机打开授权页面是这样的,没有授权麦克风选项

    2023-07-16
    有用
    回复 1
    • 江野
      江野
      2023-10-27
      大佬。请问解决了嘛
      2023-10-27
      回复
登录 后发表内容