🆕 #2249 【小程序】增加自定义组件之商家入驻相关接口

This commit is contained in:
liming1019
2021-08-09 22:08:29 +08:00
committed by GitHub
parent 5c71b2a29f
commit 16d98a6142
18 changed files with 582 additions and 0 deletions

View File

@@ -326,6 +326,17 @@ public class WxMaApiUrlConstants {
String REGISTER_FINISH_ACCESS_INFO = "https://api.weixin.qq.com/shop/register/finish_access_info";
String REGISTER_APPLY_SCENE = "https://api.weixin.qq.com/shop/register/apply_scene";
}
interface Account {
String GET_CATEGORY_LIST = "https://api.weixin.qq.com/shop/account/get_category_list";
String GET_BRAND_LIST = "https://api.weixin.qq.com/shop/account/get_brand_list";
String UPDATE_INFO = "https://api.weixin.qq.com/shop/account/update_info";
String GET_INFO = "https://api.weixin.qq.com/shop/account/get_info";
}
interface Cat {
String GET_CAT = "https://api.weixin.qq.com/shop/cat/get";
}
}
/**