获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
[图片] 白天是不会报错的,正常都会返回数据
微信小程序access_token在夜间调用不返回数据?https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=%s&secret=%s 想问下这个接口最近两天在晚上18点到凌晨00:00:00的调用是不返回数据吗? accessToken = (String) jsonObject.get("access_token"); expiresAt = Long.parseLong(jsonObject.get("expires_in") + "") * 1000 + System.currentTimeMillis(); 我代码在解析expires_in的时候报错了,expires_in微信返回的是null,导致格式化异常,这个接口是有调用次数的限制吗?还是最近官方做了什么变动,夜间不返回数据了?
03-06