今天wx.login不执行了 什么情况? 昨天都还正常
wx.login({
success: function (res_login) {
if (res_login.code) {
wx.getUserInfo({
withCredentials: true,
success: function (res_user) {
console.log(res_user)
console.log(res_login);
wx.request({
url: 'https://app.xinjie-tec.cn/jjg/Home/Login/wxUserInfo',
嗯嗯 wx.login进入了success 但是 wx.getuserinfo 不执行
并没有进入fail
第一次需要用button组件让用户授权,后面才可以直接用wx.getUserInfo静默获取用户信息
https://developers.weixin.qq.com/miniprogram/dev/api/open.html#wxgetuserinfoobject
注意:此接口有调整,使用该接口将不再出现授权弹窗,请使用 <button open-type="getUserInfo"></button> 引导用户主动进行授权操作
调用接口变了,看公告
调用wx.login()返回失败,有没有遇到的
你好,请查阅关于获取用户信息优化调整的最新文档:
获取用户信息接口优化调整
https://developers.weixin.qq.com/blogdetail?action=get_post_info&lang=zh_CN&token=384460955&docid=000aee01f98fc0cbd4b6ce43b56c01
https://developers.weixin.qq.com/blogdetail?action=get_post_info&docid=000aee01f98fc0cbd4b6ce43b56c01&highline=getUserInfo&token=1167709984&comment_lvl=67
开发工具的上 调用getuserinfo 已经被禁止使用了
wx.getuserinfo现在应该是不行了,不过出了新公告,过几天因该又可以用了