我采用的 简单有效 的 wx.getUserProfile 修改方法 https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
调用wx.getSetting返回数据没有scope.userInfo?[图片]
2021-04-13我采用的 简单有效 的 wx.getUserProfile 修改方法 https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
在调试器中,为什么突然不能获取userinfo?而且只有这一个小程序有问题?.调用wx.getSetting返回的结果中,没有scope.userinfo的信息。然后通过open-type="getUserInfo" bindgetuserinfo="getUserInfo"的button,并不能弹出用户授权。结果如下: [图片] [图片] 点击授权BUTTON后,并没有授权提示,直接返回了如下结果 [图片] 请问这是什么原因。当前小程序正在开发中,还没有上线,而且 也是已经认证通过的。
2021-04-13我采用的 简单有效 的 wx.getUserProfile 修改方法 https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
小程序授权登录 scope.userInfo字段为什么没有了?小程序登录、用户信息相关接口调整后使用了wx.getUserlnfo接口授权登录,uni.getSetting获取不到scope.userInfo [图片] [图片]
2021-04-13我采用的 简单有效 的 wx.getUserProfile 修改方法 https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
getUserProfile api 获取userinfo 数据混乱?api: getUserProfile 环境: 小程序开发工具1.05.2103190(最新版);小程序基础库:2.16.0 问题 :调用wx.getUserProfile 获取用户信息rawData里的数据昵称头像是正常的,但userInfo 的数据的头像和昵称数据是混乱的,昵称的值时头像,头像的值为空。 代码: wx.getUserProfile({ desc: '用户完善用户资料', success: function (res) { console.log('新版本 用户完善用户资料') console.log(res) } }); 截图:[图片]
2021-04-13我采用的 简单有效 的 wx.getUserProfile 修改方法 https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
wx.getSetting的scope.userInfo获取不到是什么原因?wx.getSetting({ success (res){ if (res.authSetting['scope.userInfo']) { console.log('res.authSetting--------',res.authSetting) } else { console.log('获取不到~~~') } } }) 经console.log() [图片]
2021-04-13我采用的 简单有效 的 wx.getUserProfile 修改方法 https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
小程序用户授权后,wx.getSetting接口获取scope.userInfo不存在?小程序获取用户信息报错,使用wx.getUserProfile接口获取用户的个人信息(头像、昵称、性别与地区)后,调用wx.getSetting接口还是没有代表用户授权的scope.userInfo状态存在 [图片] [图片] [图片][图片][图片]
2021-04-13我采用的 简单有效 的 wx.getUserProfile 修改方法 https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
wx.getUserProfile更新后,scope.userInfo不能使用?wx.getUserProfile更新后,wx.getSetting中的scope.userInfo不能用了。 如图 [图片] 这是我的一个电商类项目,之前下单时判断是否登录,否则跳转登录,现在使用wx.getUserProfile后,直接就跳过个判断直接下单了,想问问大佬们有没有什么解决的方法?
2021-04-13我采用的 简单有效 的 wx.getUserProfile 修改方法 https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
授权后,wx.getSetting 拿不到scope.userInfo?[图片] [图片]
2021-04-13我采用的 简单有效 的 wx.getUserProfile 修改方法 https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
微信小程序获取userinfo头像信息突然获取不到了怎么回事?app.userInfoReadyCallback = res => { console.log(res.userInfo, 'res.userInfo'); this.setData({ userInfo: res.userInfo, hasUserInfo: true }); }; 这个api 突然在开发环境版本获取不到正确的用户信息了 哪位大神知道怎么回事 [图片]
2021-04-13我采用的 简单有效 的 wx.getUserProfile 修改方法 https://developers.weixin.qq.com/community/develop/article/doc/00000cc422c12844b4fb644d056813
小程序新的登录机制,后端是不是无法直接获取 userInfo 了?看了小程序登录、用户信息相关接口调整,好像后端要想获得 userInfo,只能由前端明文发送给后端,或者前端先自己加密再发送给后端了?
2021-04-13