1
0
mirror of synced 2026-02-25 15:49:36 +08:00

🆕 #3079 【企业微信】增加提醒成员群发和停止企业群发的接口

This commit is contained in:
zhongjun
2023-07-13 11:18:36 +08:00
committed by GitHub
parent 831aac31ba
commit 753497579c
4 changed files with 81 additions and 0 deletions

View File

@@ -615,4 +615,26 @@ public class WxCpExternalContactServiceImplTest {
this.wxCpService.getExternalContactService().getJoinWay(configId);
}
/**
* 提醒成员群发
*
* @throws WxErrorException
*/
@Test
public void testRemindGroupMsgSend() throws WxErrorException {
this.wxCpService.getExternalContactService()
.remindGroupMsgSend("msgGCAAAXtWyujaWJHDDGi0mACAAAA");
}
/**
* 测试取消提醒成员群发
*
* @throws WxErrorException
*/
@Test
public void testCancelGroupMsgSend() throws WxErrorException {
this.wxCpService.getExternalContactService()
.cancelGroupMsgSend("msgGCAAAXtWyujaWJHDDGi0mACAAAA");
}
}