1
0
mirror of synced 2025-12-22 00:48:00 +08:00

添加批量为用户打标签的接口

This commit is contained in:
BinaryWang
2016-09-21 20:49:23 +08:00
parent 592ac81163
commit 9780d651d6
3 changed files with 42 additions and 0 deletions

View File

@@ -60,4 +60,12 @@ public class WxMpUserTagServiceImplTest {
System.out.println(res);
Assert.assertNotNull(res);
}
@Test
public void testBatchTagging() throws Exception {
String[] openids = new String[]{((ApiTestModule.WxXmlMpInMemoryConfigStorage) this.wxService.getWxMpConfigStorage()).getOpenid()};
boolean res = this.wxService.getUserTagService().batchTagging(this.tagId, openids);
System.out.println(res);
Assert.assertTrue(res);
}
}