🐛 #1604 修复微信开放平台帐号管理相关接口,使用指定appId的access_token

* fix:修改微信开放平台帐号管理相关接口,使用指定appId的access_token,非开放平台自身的component_access_token
This commit is contained in:
whhya
2020-07-21 10:20:12 +08:00
committed by GitHub
parent 4d1440912d
commit 04fb35d1ba
3 changed files with 58 additions and 17 deletions

View File

@ -394,5 +394,17 @@ public class WxConsts {
public static final String OPERATORDEFAULT = "DEFAULT";
}
/**
* appId 类型
*/
public static class AppIdType {
/**
* 公众号appId类型
*/
public static final String MP_TYPE = "mp";
/**
* 小程序appId类型
*/
public static final String MINI_TYPE = "mini";
}
}