🆕 #3850 【视频号】小店 SDK 添加类目权限管理接口和商品 SPU 信息扩展(by cchengg)

This commit is contained in:
Binary Wang
2026-01-14 13:56:50 +08:00
committed by Binary Wang
parent 5947f24805
commit 3b5ead664c
13 changed files with 212 additions and 18 deletions

View File

@@ -158,4 +158,14 @@ public class WxChannelCategoryServiceImplTest {
assertTrue(response.isSuccess());
System.out.println(response);
}
@Test
public void testListRelationCategory() throws WxErrorException {
WxChannelCategoryService categoryService = channelService.getCategoryService();
me.chanjar.weixin.channel.bean.category.RelationCategoryResponse response =
categoryService.listRelationCategory(true, 1);
assertNotNull(response);
assertTrue(response.isSuccess());
System.out.println(response);
}
}