mirror of
				https://gitee.com/binary/weixin-java-tools.git
				synced 2025-10-31 10:38:42 +08:00 
			
		
		
		
	#1011 开放平台小程序审核结果增加截图示例的字段
This commit is contained in:
		| @ -1,14 +1,10 @@ | |||||||
| package cn.binarywang.wx.miniapp.api; | package cn.binarywang.wx.miniapp.api; | ||||||
|  |  | ||||||
| import java.util.List; | import cn.binarywang.wx.miniapp.bean.code.*; | ||||||
|  |  | ||||||
| import cn.binarywang.wx.miniapp.bean.code.WxMaCategory; |  | ||||||
| import cn.binarywang.wx.miniapp.bean.code.WxMaCodeAuditStatus; |  | ||||||
| import cn.binarywang.wx.miniapp.bean.code.WxMaCodeCommitRequest; |  | ||||||
| import cn.binarywang.wx.miniapp.bean.code.WxMaCodeSubmitAuditRequest; |  | ||||||
| import cn.binarywang.wx.miniapp.bean.code.WxMaCodeVersionDistribution; |  | ||||||
| import me.chanjar.weixin.common.error.WxErrorException; | import me.chanjar.weixin.common.error.WxErrorException; | ||||||
|  |  | ||||||
|  | import java.util.List; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * 小程序代码管理相关 API(大部分只能是第三方平台调用) |  * 小程序代码管理相关 API(大部分只能是第三方平台调用) | ||||||
|  * 文档:https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1489140610_Uavc4&token=&lang=zh_CN |  * 文档:https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1489140610_Uavc4&token=&lang=zh_CN | ||||||
| @ -18,7 +14,7 @@ import me.chanjar.weixin.common.error.WxErrorException; | |||||||
|  */ |  */ | ||||||
| public interface WxMaCodeService { | public interface WxMaCodeService { | ||||||
|   /** |   /** | ||||||
|    * 为授权的小程序帐号上传小程序代码 |    * 为授权的小程序帐号上传小程序代码. | ||||||
|    */ |    */ | ||||||
|   String COMMIT_URL = "https://api.weixin.qq.com/wxa/commit"; |   String COMMIT_URL = "https://api.weixin.qq.com/wxa/commit"; | ||||||
|   String GET_QRCODE_URL = "https://api.weixin.qq.com/wxa/get_qrcode"; |   String GET_QRCODE_URL = "https://api.weixin.qq.com/wxa/get_qrcode"; | ||||||
| @ -35,7 +31,7 @@ public interface WxMaCodeService { | |||||||
|   String UNDO_CODE_AUDIT_URL = "https://api.weixin.qq.com/wxa/undocodeaudit"; |   String UNDO_CODE_AUDIT_URL = "https://api.weixin.qq.com/wxa/undocodeaudit"; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 为授权的小程序帐号上传小程序代码(仅仅支持第三方开放平台) |    * 为授权的小程序帐号上传小程序代码(仅仅支持第三方开放平台). | ||||||
|    * |    * | ||||||
|    * @param commitRequest 参数 |    * @param commitRequest 参数 | ||||||
|    * @throws WxErrorException 上传失败时抛出,具体错误码请看类注释文档 |    * @throws WxErrorException 上传失败时抛出,具体错误码请看类注释文档 | ||||||
| @ -43,7 +39,7 @@ public interface WxMaCodeService { | |||||||
|   void commit(WxMaCodeCommitRequest commitRequest) throws WxErrorException; |   void commit(WxMaCodeCommitRequest commitRequest) throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 获取体验小程序的体验二维码 |    * 获取体验小程序的体验二维码. | ||||||
|    * 文档地址: |    * 文档地址: | ||||||
|    * https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1489140610_Uavc4&token=&lang=zh_CN |    * https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1489140610_Uavc4&token=&lang=zh_CN | ||||||
|    * |    * | ||||||
| @ -55,7 +51,7 @@ public interface WxMaCodeService { | |||||||
|   byte[] getQrCode(String path) throws WxErrorException; |   byte[] getQrCode(String path) throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 获取授权小程序帐号的可选类目 |    * 获取授权小程序帐号的可选类目. | ||||||
|    * |    * | ||||||
|    * @return List<WxMaCategory> |    * @return List<WxMaCategory> | ||||||
|    * @throws WxErrorException 获取失败时返回,具体错误码请看此接口的注释文档 |    * @throws WxErrorException 获取失败时返回,具体错误码请看此接口的注释文档 | ||||||
| @ -63,7 +59,7 @@ public interface WxMaCodeService { | |||||||
|   List<WxMaCategory> getCategory() throws WxErrorException; |   List<WxMaCategory> getCategory() throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 获取小程序的第三方提交代码的页面配置(仅供第三方开发者代小程序调用) |    * 获取小程序的第三方提交代码的页面配置(仅供第三方开发者代小程序调用). | ||||||
|    * |    * | ||||||
|    * @return page_list 页面配置列表 |    * @return page_list 页面配置列表 | ||||||
|    * @throws WxErrorException 获取失败时返回,具体错误码请看此接口的注释文档 |    * @throws WxErrorException 获取失败时返回,具体错误码请看此接口的注释文档 | ||||||
| @ -71,7 +67,7 @@ public interface WxMaCodeService { | |||||||
|   List<String> getPage() throws WxErrorException; |   List<String> getPage() throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 将第三方提交的代码包提交审核(仅供第三方开发者代小程序调用) |    * 将第三方提交的代码包提交审核(仅供第三方开发者代小程序调用). | ||||||
|    * |    * | ||||||
|    * @param auditRequest 提交审核参数 |    * @param auditRequest 提交审核参数 | ||||||
|    * @return 审核编号 |    * @return 审核编号 | ||||||
| @ -80,7 +76,7 @@ public interface WxMaCodeService { | |||||||
|   long submitAudit(WxMaCodeSubmitAuditRequest auditRequest) throws WxErrorException; |   long submitAudit(WxMaCodeSubmitAuditRequest auditRequest) throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 查询某个指定版本的审核状态(仅供第三方代小程序调用) |    * 查询某个指定版本的审核状态(仅供第三方代小程序调用). | ||||||
|    * |    * | ||||||
|    * @param auditId 提交审核时获得的审核id |    * @param auditId 提交审核时获得的审核id | ||||||
|    * @return 审核状态 |    * @return 审核状态 | ||||||
| @ -89,7 +85,7 @@ public interface WxMaCodeService { | |||||||
|   WxMaCodeAuditStatus getAuditStatus(long auditId) throws WxErrorException; |   WxMaCodeAuditStatus getAuditStatus(long auditId) throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 查询最新一次提交的审核状态(仅供第三方代小程序调用) |    * 查询最新一次提交的审核状态(仅供第三方代小程序调用). | ||||||
|    * |    * | ||||||
|    * @return 审核状态 |    * @return 审核状态 | ||||||
|    * @throws WxErrorException 查询失败时返回,具体错误码请看此接口的注释文档 |    * @throws WxErrorException 查询失败时返回,具体错误码请看此接口的注释文档 | ||||||
| @ -97,14 +93,14 @@ public interface WxMaCodeService { | |||||||
|   WxMaCodeAuditStatus getLatestAuditStatus() throws WxErrorException; |   WxMaCodeAuditStatus getLatestAuditStatus() throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 发布已通过审核的小程序(仅供第三方代小程序调用) |    * 发布已通过审核的小程序(仅供第三方代小程序调用). | ||||||
|    * |    * | ||||||
|    * @throws WxErrorException 发布失败时抛出,具体错误码请看此接口的注释文档 |    * @throws WxErrorException 发布失败时抛出,具体错误码请看此接口的注释文档 | ||||||
|    */ |    */ | ||||||
|   void release() throws WxErrorException; |   void release() throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 修改小程序线上代码的可见状态(仅供第三方代小程序调用) |    * 修改小程序线上代码的可见状态(仅供第三方代小程序调用). | ||||||
|    * |    * | ||||||
|    * @param action 设置可访问状态,发布后默认可访问,close为不可见,open为可见 |    * @param action 设置可访问状态,发布后默认可访问,close为不可见,open为可见 | ||||||
|    * @throws WxErrorException 发布失败时抛出,具体错误码请看此接口的注释文档 |    * @throws WxErrorException 发布失败时抛出,具体错误码请看此接口的注释文档 | ||||||
| @ -112,14 +108,14 @@ public interface WxMaCodeService { | |||||||
|   void changeVisitStatus(String action) throws WxErrorException; |   void changeVisitStatus(String action) throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 小程序版本回退(仅供第三方代小程序调用) |    * 小程序版本回退(仅供第三方代小程序调用). | ||||||
|    * |    * | ||||||
|    * @throws WxErrorException 失败时抛出,具体错误码请看此接口的注释文档 |    * @throws WxErrorException 失败时抛出,具体错误码请看此接口的注释文档 | ||||||
|    */ |    */ | ||||||
|   void revertCodeRelease() throws WxErrorException; |   void revertCodeRelease() throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 查询当前设置的最低基础库版本及各版本用户占比 (仅供第三方代小程序调用) |    * 查询当前设置的最低基础库版本及各版本用户占比 (仅供第三方代小程序调用). | ||||||
|    * |    * | ||||||
|    * @return 小程序版本分布信息 |    * @return 小程序版本分布信息 | ||||||
|    * @throws WxErrorException 失败时抛出,具体错误码请看此接口的注释文档 |    * @throws WxErrorException 失败时抛出,具体错误码请看此接口的注释文档 | ||||||
| @ -127,7 +123,7 @@ public interface WxMaCodeService { | |||||||
|   WxMaCodeVersionDistribution getSupportVersion() throws WxErrorException; |   WxMaCodeVersionDistribution getSupportVersion() throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 设置最低基础库版本(仅供第三方代小程序调用) |    * 设置最低基础库版本(仅供第三方代小程序调用). | ||||||
|    * |    * | ||||||
|    * @param version 版本 |    * @param version 版本 | ||||||
|    * @throws WxErrorException 失败时抛出,具体错误码请看此接口的注释文档 |    * @throws WxErrorException 失败时抛出,具体错误码请看此接口的注释文档 | ||||||
| @ -135,7 +131,7 @@ public interface WxMaCodeService { | |||||||
|   void setSupportVersion(String version) throws WxErrorException; |   void setSupportVersion(String version) throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 小程序审核撤回 |    * 小程序审核撤回. | ||||||
|    * 单个帐号每天审核撤回次数最多不超过1次,一个月不超过10次 |    * 单个帐号每天审核撤回次数最多不超过1次,一个月不超过10次 | ||||||
|    * |    * | ||||||
|    * @throws WxErrorException 失败时抛出,具体错误码请看此接口的注释文档 |    * @throws WxErrorException 失败时抛出,具体错误码请看此接口的注释文档 | ||||||
|  | |||||||
| @ -18,18 +18,24 @@ import java.io.Serializable; | |||||||
| public class WxMaCodeAuditStatus implements Serializable { | public class WxMaCodeAuditStatus implements Serializable { | ||||||
|   private static final long serialVersionUID = 4655119308692217268L; |   private static final long serialVersionUID = 4655119308692217268L; | ||||||
|   /** |   /** | ||||||
|    * 审核 ID |    * 审核 ID. | ||||||
|    */ |    */ | ||||||
|   @SerializedName(value = "auditId", alternate = {"auditid"}) |   @SerializedName(value = "auditId", alternate = {"auditid"}) | ||||||
|   private Long auditId; |   private Long auditId; | ||||||
|   /** |   /** | ||||||
|    * 审核状态,其中0为审核成功,1为审核失败,2为审核中 |    * 审核状态. | ||||||
|  |    * 其中0为审核成功,1为审核失败,2为审核中 | ||||||
|    */ |    */ | ||||||
|   private Integer status; |   private Integer status; | ||||||
|   /** |   /** | ||||||
|    * 当status=1,审核被拒绝时,返回的拒绝原因 |    * 当status=1,审核被拒绝时,返回的拒绝原因. | ||||||
|    */ |    */ | ||||||
|   private String reason; |   private String reason; | ||||||
|  |   /** | ||||||
|  |    * 当status=1,审核被拒绝时,会返回审核失败的小程序截图示例。 xxx丨yyy丨zzz是media_id可通过获取永久素材接口 拉取截图内容). | ||||||
|  |    */ | ||||||
|  |   @SerializedName(value = "screenshot") | ||||||
|  |   private String screenShot; | ||||||
|  |  | ||||||
|   public static WxMaCodeAuditStatus fromJson(String json) { |   public static WxMaCodeAuditStatus fromJson(String json) { | ||||||
|     return WxMaGsonBuilder.create().fromJson(json, WxMaCodeAuditStatus.class); |     return WxMaGsonBuilder.create().fromJson(json, WxMaCodeAuditStatus.class); | ||||||
|  | |||||||
| @ -22,7 +22,7 @@ import java.util.Map; | |||||||
| public interface WxOpenMaService extends WxMaService { | public interface WxOpenMaService extends WxMaService { | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 设置小程序服务器域名 |    * 设置小程序服务器域名. | ||||||
|    * |    * | ||||||
|    * <pre> |    * <pre> | ||||||
|    *     授权给第三方的小程序,其服务器域名只可以为第三方的服务器,当小程序通过第三方发布代码上线后,小程序原先自己配置的服务器域名将被删除, |    *     授权给第三方的小程序,其服务器域名只可以为第三方的服务器,当小程序通过第三方发布代码上线后,小程序原先自己配置的服务器域名将被删除, | ||||||
| @ -170,8 +170,6 @@ public interface WxOpenMaService extends WxMaService { | |||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 获得小程序的域名配置信息 |    * 获得小程序的域名配置信息 | ||||||
|    * |  | ||||||
|    * @return |  | ||||||
|    */ |    */ | ||||||
|   WxOpenMaDomainResult getDomain() throws WxErrorException; |   WxOpenMaDomainResult getDomain() throws WxErrorException; | ||||||
|  |  | ||||||
| @ -179,12 +177,6 @@ public interface WxOpenMaService extends WxMaService { | |||||||
|    * 修改域名 |    * 修改域名 | ||||||
|    * |    * | ||||||
|    * @param action delete删除, set覆盖, get获取 |    * @param action delete删除, set覆盖, get获取 | ||||||
|    * @param requestdomainList |  | ||||||
|    * @param wsrequestdomainList |  | ||||||
|    * @param uploaddomainList |  | ||||||
|    * @param downloaddomainList |  | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   WxOpenMaDomainResult modifyDomain(String action, List<String> requestdomainList, List<String> wsrequestdomainList, List<String> uploaddomainList, List<String> downloaddomainList) throws WxErrorException; |   WxOpenMaDomainResult modifyDomain(String action, List<String> requestdomainList, List<String> wsrequestdomainList, List<String> uploaddomainList, List<String> downloaddomainList) throws WxErrorException; | ||||||
|  |  | ||||||
| @ -199,16 +191,12 @@ public interface WxOpenMaService extends WxMaService { | |||||||
|    * 设置小程序的业务域名 |    * 设置小程序的业务域名 | ||||||
|    * |    * | ||||||
|    * @param action add添加, delete删除, set覆盖 |    * @param action add添加, delete删除, set覆盖 | ||||||
|    * @param domainList |  | ||||||
|    * @return 直接返回字符串 |    * @return 直接返回字符串 | ||||||
|    */ |    */ | ||||||
|   String setWebViewDomain(String action, List<String> domainList) throws WxErrorException; |   String setWebViewDomain(String action, List<String> domainList) throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 获取小程序的信息 |    * 获取小程序的信息 | ||||||
|    * |  | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   String getAccountBasicInfo() throws WxErrorException; |   String getAccountBasicInfo() throws WxErrorException; | ||||||
|  |  | ||||||
| @ -225,16 +213,11 @@ public interface WxOpenMaService extends WxMaService { | |||||||
|    * 解除绑定小程序体验者 |    * 解除绑定小程序体验者 | ||||||
|    * |    * | ||||||
|    * @param wechatid 体验者微信号(不是openid) |    * @param wechatid 体验者微信号(不是openid) | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   WxOpenResult unbindTester(String wechatid) throws WxErrorException; |   WxOpenResult unbindTester(String wechatid) throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 获得体验者列表 |    * 获得体验者列表 | ||||||
|    * |  | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   WxOpenMaTesterListResult getTesterList() throws WxErrorException; |   WxOpenMaTesterListResult getTesterList() throws WxErrorException; | ||||||
|  |  | ||||||
| @ -245,17 +228,11 @@ public interface WxOpenMaService extends WxMaService { | |||||||
|    * @param userVersion 用户定义版本 |    * @param userVersion 用户定义版本 | ||||||
|    * @param userDesc    用户定义版本描述 |    * @param userDesc    用户定义版本描述 | ||||||
|    * @param extInfo     第三方自定义的配置 |    * @param extInfo     第三方自定义的配置 | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   WxOpenResult codeCommit(Long templateId, String userVersion, String userDesc, WxMaOpenCommitExtInfo extInfo) throws WxErrorException; |   WxOpenResult codeCommit(Long templateId, String userVersion, String userDesc, WxMaOpenCommitExtInfo extInfo) throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 获取体验小程序的体验二维码 |    * 获取体验小程序的体验二维码 | ||||||
|    * |  | ||||||
|    * @param pagePath |  | ||||||
|    * @param params |  | ||||||
|    * @return |  | ||||||
|    */ |    */ | ||||||
|   File getTestQrcode(String pagePath, Map<String, String> params) throws WxErrorException; |   File getTestQrcode(String pagePath, Map<String, String> params) throws WxErrorException; | ||||||
|  |  | ||||||
| @ -264,9 +241,6 @@ public interface WxOpenMaService extends WxMaService { | |||||||
|    * <p> |    * <p> | ||||||
|    * 注意:该接口可获取已设置的二级类目及用于代码审核的可选三级类目。 |    * 注意:该接口可获取已设置的二级类目及用于代码审核的可选三级类目。 | ||||||
|    * </p> |    * </p> | ||||||
|    * |  | ||||||
|    * @return WxOpenMaCategoryListResult |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   WxOpenMaCategoryListResult getCategoryList() throws WxErrorException; |   WxOpenMaCategoryListResult getCategoryList() throws WxErrorException; | ||||||
|  |  | ||||||
| @ -280,69 +254,42 @@ public interface WxOpenMaService extends WxMaService { | |||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 将第三方提交的代码包提交审核(仅供第三方开发者代小程序调用) |    * 将第三方提交的代码包提交审核(仅供第三方开发者代小程序调用) | ||||||
|    * |  | ||||||
|    * @param submitAuditMessage |  | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   WxOpenMaSubmitAuditResult submitAudit(WxOpenMaSubmitAuditMessage submitAuditMessage) throws WxErrorException; |   WxOpenMaSubmitAuditResult submitAudit(WxOpenMaSubmitAuditMessage submitAuditMessage) throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 查询某个指定版本的审核状态(仅供第三方代小程序调用) |    * 查询某个指定版本的审核状态(仅供第三方代小程序调用) | ||||||
|    * |  | ||||||
|    * @param auditid |  | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   WxOpenMaQueryAuditResult getAuditStatus(Long auditid) throws WxErrorException; |   WxOpenMaQueryAuditResult getAuditStatus(Long auditid) throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 查询最新一次提交的审核状态(仅供第三方代小程序调用) |    * 查询最新一次提交的审核状态(仅供第三方代小程序调用). | ||||||
|    * |  | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   WxOpenMaQueryAuditResult getLatestAuditStatus() throws WxErrorException; |   WxOpenMaQueryAuditResult getLatestAuditStatus() throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 发布已通过审核的小程序(仅供第三方代小程序调用) |    * 发布已通过审核的小程序(仅供第三方代小程序调用). | ||||||
|    * |  | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   WxOpenResult releaesAudited() throws WxErrorException; |   WxOpenResult releaesAudited() throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 11. 小程序版本回退(仅供第三方代小程序调用) |    * 11. 小程序版本回退(仅供第三方代小程序调用) | ||||||
|    * |  | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   WxOpenResult revertCodeReleaes() throws WxErrorException; |   WxOpenResult revertCodeReleaes() throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 15. 小程序审核撤回 |    * 15. 小程序审核撤回 | ||||||
|    * <p> |  | ||||||
|    * 单个帐号每天审核撤回次数最多不超过1次,一个月不超过10次。 |    * 单个帐号每天审核撤回次数最多不超过1次,一个月不超过10次。 | ||||||
|    * </p> |  | ||||||
|    * |  | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   WxOpenResult undoCodeAudit() throws WxErrorException; |   WxOpenResult undoCodeAudit() throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 查询当前设置的最低基础库版本及各版本用户占比 (仅供第三方代小程序调用) |    * 查询当前设置的最低基础库版本及各版本用户占比 (仅供第三方代小程序调用) | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   String getSupportVersion() throws WxErrorException; |   String getSupportVersion() throws WxErrorException; | ||||||
|  |  | ||||||
|   /** |   /** | ||||||
|    * 设置最低基础库版本(仅供第三方代小程序调用) |    * 设置最低基础库版本(仅供第三方代小程序调用) | ||||||
|    * @param version |  | ||||||
|    * @return |  | ||||||
|    * @throws WxErrorException |  | ||||||
|    */ |    */ | ||||||
|   String setSupportVersion(String version) throws WxErrorException; |   String setSupportVersion(String version) throws WxErrorException; | ||||||
|  |  | ||||||
|  | |||||||
| @ -29,4 +29,9 @@ public class WxOpenMaQueryAuditResult extends WxOpenResult { | |||||||
|    * 审核失败原因. |    * 审核失败原因. | ||||||
|    */ |    */ | ||||||
|   String reason; |   String reason; | ||||||
|  |   /** | ||||||
|  |    * 当status=1,审核被拒绝时,会返回审核失败的小程序截图示例。 xxx丨yyy丨zzz是media_id可通过获取永久素材接口 拉取截图内容). | ||||||
|  |    */ | ||||||
|  |   @SerializedName(value = "screenshot") | ||||||
|  |   private String screenShot; | ||||||
| } | } | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user
	 Binary Wang
					Binary Wang