1
0
mirror of synced 2026-02-28 17:41:48 +08:00

🆕 #2612 【企业微信】增加获取企业活跃成员数和通讯录异步导出的接口

This commit is contained in:
zhongjun
2022-04-22 09:01:19 +08:00
committed by GitHub
parent 5d0364f6d2
commit 1030115751
10 changed files with 325 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
package me.chanjar.weixin.cp.api.impl;
import java.util.Date;
import java.util.List;
import java.util.Map;
@@ -121,4 +122,11 @@ public class WxCpUserServiceImplTest {
@Test
public void testGetExternalContact() {
}
@Test
public void testGetActiveStat() throws WxErrorException {
Integer activeStat = this.wxCpService.getUserService().getActiveStat(new Date());
System.out.printf("active stat: %d", activeStat);
assertNotNull(activeStat);
}
}