收藏
回答

getUserInfo, 是否不再用wx.authorize而用button授权

1、请问getUserInfo获取用户信息接口,是否不再采用

wx.authorize({scope: 'scope.userInfo'进行授权了,而是直接采用button方式授权

<button  open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo"></button>

2、https://developers.weixin.qq.com/miniprogram/dev/api/open.html#wxgetuserinfoobject

教程中有错误  



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

3 个回答

  • AspirIn
    AspirIn
    2018-05-16

    wx.authorize只是检测而已啊

    2018-05-16
    有用
    回复
  • ☀东升
    ☀东升
    2018-05-15

    用button 了好像就不需要了。我没用上

    2018-05-15
    有用
    回复
  • 城南春
    城南春
    2018-05-14

    没有授权怎么直接调弹窗自动弹出呀

    2018-05-14
    有用
    回复 5
    • 十
      2018-05-23
      现在不能自动弹出用户信息授权窗口了,以后也不会有了。想弹出授权窗口,就用按钮吧,别想自动弹出了
      2018-05-23
      回复
    • 城南春
      城南春
      2018-05-23
      那就是相当于加一个登录页面和权限开关页面咯
      2018-05-23
      回复
    • 城南春
      城南春
      2018-05-23回复
      线上审核说,不能再一开始就去获取用户数据和授权,整体的权限怎么做才好呀
      2018-05-23
      回复
    • 十
      2018-05-23回复城南春
      wx.getSetting({ success: res => { console.log("授权结果") if (res.authSetting['scope.userInfo']) { console.log("授权") // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框 wx.getUserInfo({ success: res => { console.log(res) app.globalData.userInfo = res.userInfo; app.globalData.encryptedData = res.encryptedData; app.globalData.iv = res.iv; // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回 // 所以此处加入 callback 以防止这种情况 if (app.userInfoReadyCallback) { app.userInfoReadyCallback(res) } } }) } else { console.log("未授权") //跳转到授权页面 wx.redirectTo({ url: '../userInfo/userInfo' }) } } }) 进入首页先判断,已授权可以直接获取,没有授权就进入授权页面,因为必须要按钮才能授权所以只能增加一个授权页面了
      2018-05-23
      回复
    • 城南春
      城南春
      2018-05-23回复
      哦哦,谢啦
      2018-05-23
      回复
登录 后发表内容