收藏
回答

用户隐私协议已经更新并且审核通过了,还是报错?

用户隐私协议已经更新并且审核通过了,还是报错


getUserProfile:fail api scope is not declared 

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

3 个回答

  • 小程序运营专员-yuan
    小程序运营专员-yuan
    07-08

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

    07-08
    有用
    回复
  • 那一抹笑😃 穿透阳光
    那一抹笑😃 穿透阳光
    07-08

    这个api,都已经被废弃了,而且你使用这个api之前,有弹出隐私保护协议弹窗吗,后台配置了,客户端还需要弹窗,让用户点击同意,才能使用相关api

    07-08
    有用
    回复
  • 阿康
    阿康
    07-07

    async getUserProfile(e) {

    let isPrivacySetting =

    await this.$refs.kzWxPrivacyCheck.getPrivacySetting("showPrivacy");

    console.log("isPrivacySetting", isPrivacySetting);

    if (isPrivacySetting) {

    var that = this;

    uni.getUserProfile({

    lang: "zh_CN",

    desc: "显示用户信息",

    success: (res) => {

    uni.login({

    provider: "weixin",

    success(e) {

    that.wxlogin(e.code, res.userInfo);

    },

    });

    },

    fail: (err) => {

    console.log(err);

    },

    });

    }

    }

    07-07
    有用
    回复 1
    • 阿康
      阿康
      07-07
      一直报错 getUserProfile:fail api scope is not declared in the privacy agreement
      07-07
      回复
登录 后发表内容