|
|
|
@@ -67,6 +67,7 @@ public class WxMemController { |
|
|
|
|
|
|
|
private void getBatchUserInfos(WxMpService wxService, WxMpUserList mpUserList, WxAuthorizerInfo authorizerInfo) { |
|
|
|
List<String> openIds = mpUserList.getOpenids(); |
|
|
|
|
|
|
|
if(openIds.size() > 100) { |
|
|
|
int index = 0; |
|
|
|
int index_end = index + 100; |
|
|
|
@@ -87,6 +88,9 @@ public class WxMemController { |
|
|
|
} |
|
|
|
|
|
|
|
private void getBatchUserInfo(WxMpService wxService, List<String> openIds, WxAuthorizerInfo authorizerInfo) { |
|
|
|
if(openIds.size() <= 0) { |
|
|
|
return; |
|
|
|
} |
|
|
|
List<WxMpUser> userList = null; |
|
|
|
try{ |
|
|
|
userList = wxService.getUserService().userInfoList(openIds); |
|
|
|
|