小程序请求小程序码时遇到以下错误
"errcode":40001,"errmsg":"invalid credential, access_token is invalid or not latest hint: [HDuq3a0761wxa1]"
,遇到错误前可以请求, 错误后也可以请求。且中间 access_token 没变
这是什么原因?
接口请求有限制么?(用的接口B)
accessToken用 redis 保存,取法如下:
String qrUrl = WeiXinUtils.getWXAppQrcodeUrl(wxServiceCache.getAccessToken()); PostMethod postMethod = new PostMethod(qrUrl);postMethod.setRequestBody(postJson); HttpClient httpClient = new HttpClient(); httpClient.executeMethod(postMethod); |
我来提供一个此问题的触发场景:云函数更新导致 access token 失效,但业务服务中的缓存没刷新。
清一下缓存看看。
+1 楼主解决了嘛?