java获取小程序直播间列表 一直返回40001 token失效?
错误信息:{“errcode”:40001,“errmsg”:“invalid credential, access_token is invalid or not latest rid: 60483f26-519a08bf-746c3560”}
access_token是后端维护的 有效期内不会重复获取 拉取缓存直接使用;
已尝试的方法:
1、修改小程序APP_SECRET 并重新获取token —— 无效!
2、使用调试工具生成token,在java后台使用 —— 无效!
APPID: wx550ef6bf14bd26e5
代码片段:
// 拉取直播间列表
String url = "https://api.weixin.qq.com/wxa/business/getliveinfo?access_token=" + getAccessToken(tenantId, "WECHAT");
Map paras = new HashMap();
paras.put("start", pageable.getPageNumber() * pageable.getPageSize());
paras.put("limit", pageable.getPageSize());
String result = MiniHttpUtil.post(url, paras, "");