1
0
mirror of synced 2025-12-24 19:28:33 +08:00

🎨 #3190【企业微信】获取客户群详情接口响应类中增加member_version字段,并移除过期的state字段

This commit is contained in:
水依寒
2023-12-26 10:41:49 +08:00
committed by GitHub
parent 07d8531039
commit 04a679cdd7
2 changed files with 53 additions and 23 deletions

View File

@@ -389,11 +389,15 @@ public class WxCpExternalContactServiceImplTest {
assertNotNull(result);
}
/**
* Test get group chat.
*/
@Test
public void testGetGroupChat() {
public void testGetGroupChat() throws WxErrorException {
final WxCpUserExternalGroupChatInfo result = this.wxCpService.getExternalContactService().getGroupChat("wrOgQhDgAAMYQiS5ol9G7gK9JVAAAA", 1);
System.out.println(result);
assertNotNull(result);
}
/**
@@ -624,7 +628,7 @@ public class WxCpExternalContactServiceImplTest {
@Test
public void testRemindGroupMsgSend() throws WxErrorException {
this.wxCpService.getExternalContactService()
.remindGroupMsgSend("msgGCAAAXtWyujaWJHDDGi0mACAAAA");
.remindGroupMsgSend("msgGCAAAXtWyujaWJHDDGi0mACAAAA");
}
/**
@@ -635,6 +639,6 @@ public class WxCpExternalContactServiceImplTest {
@Test
public void testCancelGroupMsgSend() throws WxErrorException {
this.wxCpService.getExternalContactService()
.cancelGroupMsgSend("msgGCAAAXtWyujaWJHDDGi0mACAAAA");
.cancelGroupMsgSend("msgGCAAAXtWyujaWJHDDGi0mACAAAA");
}
}