最近微信登录时也经常遇到:Caused by: org.apache.http.NoHttpResponseException: api.weixin.qq.com:443 failed to respond 调用方法:wxMpService.oauth2getAccessToken(code);
根据code获取openid接口问题我们在小程序里通过code获取openid接口失败,对应的接口是api.weixin.qq.com/sns/jscode2session。 以下是日志信息,期待您的回复。 21-Mar-201822:07:31.853 INFO [http-nio-80-exec-80]org.apache.http.impl.execchain.RetryExec.execute I/O exception(org.apache.http.NoHttpResponseException) caught when processing request to{s}->https://api.weixin.qq.com:443: The targetserver failed to respond 21-Mar-201822:07:31.854 INFO [http-nio-80-exec-80]org.apache.http.impl.execchain.RetryExec.execute Retrying request to {s}->api weixin qq
2019-01-28同样发现问题,刚刚看到下面这个调整,希望对你有帮助! 小程序与小游戏获取用户信息接口调整,请开发者注意升级。https://developers.weixin.qq.com/blogdetail?action=get_post_info&lang=zh_CN&token=1650183953&docid=0000a26e1aca6012e896a517556c01
线上版本突然出问题,scope.userInfo为NULL小程序ID:wx5ea56788e04ad18f。 授权用户信息是通过按钮组件的登录方式授权的,并不是直接调用getuserinfo。但是为了防止用户手动在“设置"里取消授权,页面在onSow的时候,通过wx.getSetting里的res.authSetting['scope.userInfo']再做下判断。根据判断结果加载不同的页面信息。 线上版本一直是好的。就在刚刚,通过按钮组件的登录方式授权后,在设置页面显示”未使用您任何信息“。 在测试版上调试,开发工具上也没问题,在手机上res.authSetting['scope.userInfo']为NULL。 刚刚看了下,在iphone6上没有问题,出现问题的是iphone8plus
2018-06-05