🆕 #2255 【小程序】增加自定义组件之接入商品前必需的接口

This commit is contained in:
liming1019
2021-08-13 13:46:33 +08:00
committed by GitHub
parent 5326c5b155
commit b3eadb4ffa
11 changed files with 499 additions and 0 deletions

View File

@@ -341,6 +341,13 @@ public class WxMaApiUrlConstants {
interface Img {
String IMG_UPLOAD = "https://api.weixin.qq.com/shop/img/upload";
}
interface Audit {
String AUDIT_BRAND = "https://api.weixin.qq.com/shop/audit/audit_brand";
String AUDIT_CATEGORY = "https://api.weixin.qq.com/shop/audit/audit_category";
String AUDIT_RESULT = "https://api.weixin.qq.com/shop/audit/result";
String GET_MINIAPP_CERTIFICATE = "https://api.weixin.qq.com/shop/audit/get_miniapp_certificate";
}
}
/**