收藏
回答

getUserProfile接口问题?

errMsg: "getUserProfile:fail can only be invoked by user TAP gesture

这是为什么啊,还让不让升级了


终极解决方案:

https://developers.weixin.qq.com/miniprogram/dev/api/open-api/user-info/wx.getUserProfile.html#%E7%A4%BA%E4%BE%8B%E4%BB%A3%E7%A0%81

Page({
  data: {
    userInfo: {},
    hasUserInfo: false,
    canIUseGetUserProfile: false,
  },
  onLoad() {
    if (wx.getUserProfile) {
      this.setData({
        canIUseGetUserProfile: true
      })
    }
  },
  getUserProfile(e) {
    // 推荐使用wx.getUserProfile获取用户信息,开发者每次通过该接口获取用户个人信息均需用户确认
    // 开发者妥善保管用户快速填写的头像昵称,避免重复弹窗
    wx.getUserProfile({
      desc: '用于完善会员资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
      success: (res) => {
        this.setData({
          userInfo: res.userInfo,
          hasUserInfo: true
        })
      }
    })
  },
  getUserInfo(e) {
    // 不推荐使用getUserInfo获取用户信息,预计自2021年4月13日起,getUserInfo将不再弹出弹窗,并直接返回匿名的用户个人信息
    this.setData({
      userInfo: e.detail.userInfo,
      hasUserInfo: true
    })
  },
})


最后一次编辑于  2021-05-16
回答关注问题邀请回答
收藏

4 个回答

  • 得鹿梦鱼
    得鹿梦鱼
    2021-03-29

    那么encryptedData, iv

    如何同时获取呢

    2021-03-29
    有用
    回复
  • Kyle
    Kyle
    2021-03-29

    通过设置点击事件,才能触发。建议是触发后存储数据库中。只是展示型的通过open-data获取

    2021-03-29
    有用
    回复
  • 拾忆
    拾忆
    2021-03-29

    只能点击触发,不能通过脚本触发。

    2021-03-29
    有用
    回复
  • 有棱角的胖子
    有棱角的胖子
    2021-03-29

    必须用户点击才能触发getUserProfile


    2021-03-29
    有用
    回复
登录 后发表内容
问题标签