From ad6ad003bc2f9f64d256f8e904f6d9b21627614f Mon Sep 17 00:00:00 2001 From: Leandra Green <142376248+aimmt918@users.noreply.github.com> Date: Sat, 2 Mar 2024 18:10:49 +0800 Subject: [PATCH] =?UTF-8?q?:new:=20#3232=20=E3=80=90=E5=BC=80=E6=94=BE?= =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E3=80=91=E5=B0=8F=E7=A8=8B=E5=BA=8F=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E8=8E=B7=E5=8F=96=E9=9A=90=E7=A7=81=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E6=A3=80=E6=B5=8B=E7=BB=93=E6=9E=9C=E7=9A=84API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mp/bean/message/WxMpXmlMessage.java | 14 ++++++++ .../weixin/open/api/WxOpenMaService.java | 15 ++++++++ .../open/api/impl/WxOpenMaServiceImpl.java | 6 ++++ .../WxOpenMaGetCodePrivacyInfoResult.java | 34 +++++++++++++++++++ 4 files changed, 69 insertions(+) create mode 100644 weixin-java-open/src/main/java/me/chanjar/weixin/open/bean/result/WxOpenMaGetCodePrivacyInfoResult.java diff --git a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/message/WxMpXmlMessage.java b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/message/WxMpXmlMessage.java index 2c801f93e..3a30c9f14 100644 --- a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/message/WxMpXmlMessage.java +++ b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/message/WxMpXmlMessage.java @@ -709,6 +709,20 @@ public class WxMpXmlMessage implements Serializable { @JacksonXmlProperty(localName = "Reason") private String reason; + /** + * 审核延后时的时间(整形),时间戳 + */ + @XStreamAlias("DelayTime") + @JacksonXmlProperty(localName = "DelayTime") + private Long delayTime; + + /** + * 审核不通过的截图示例。用 | 分隔的 media_id 的列表 + */ + @XStreamAlias("ScreenShot") + @JacksonXmlProperty(localName = "ScreenShot") + private String screenShot; + /////////////////////////////////////// // 扫一扫事件推送 /////////////////////////////////////// diff --git a/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/WxOpenMaService.java b/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/WxOpenMaService.java index deb6098c3..3ac8c03be 100644 --- a/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/WxOpenMaService.java +++ b/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/WxOpenMaService.java @@ -225,6 +225,11 @@ public interface WxOpenMaService extends WxMaService { */ String API_GET_GRAY_RELEASE_PLAN = "https://api.weixin.qq.com/wxa/getgrayreleaseplan"; + /** + * 17 获取隐私接口检测结果 + */ + String API_GET_CODE_PRIVACY_INFO = "https://api.weixin.qq.com/wxa/security/get_code_privacy_info"; + /** * 查询服务商的当月提审限额和加急次数(Quota) @@ -624,6 +629,16 @@ public interface WxOpenMaService extends WxMaService { */ WxOpenMaGrayReleasePlanResult getGrayReleasePlan() throws WxErrorException; + /** + * 17. 获取隐私接口检测结果 + * https://developers.weixin.qq.com/doc/oplatform/openApi/OpenApiDoc/miniprogram-management/code-management/getCodePrivacyInfo.html + * + * @return {@link WxOpenMaGetCodePrivacyInfoResult } + * @throws WxErrorException wx错误异常 + * @author Yuan + */ + WxOpenMaGetCodePrivacyInfoResult getCodePrivacyInfo() throws WxErrorException; + /** * 查询服务商的当月提审限额和加急次数(Quota) * https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/Mini_Programs/code/query_quota.html diff --git a/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenMaServiceImpl.java b/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenMaServiceImpl.java index dac8cceef..fd6560192 100644 --- a/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenMaServiceImpl.java +++ b/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenMaServiceImpl.java @@ -346,6 +346,12 @@ public class WxOpenMaServiceImpl extends WxMaServiceImpl implements WxOpenMaServ return WxMaGsonBuilder.create().fromJson(response, WxOpenMaGrayReleasePlanResult.class); } + @Override + public WxOpenMaGetCodePrivacyInfoResult getCodePrivacyInfo() throws WxErrorException { + String response = get(API_GET_CODE_PRIVACY_INFO, null); + return WxMaGsonBuilder.create().fromJson(response, WxOpenMaGetCodePrivacyInfoResult.class); + } + @Override public WxOpenMaQueryQuotaResult queryQuota() throws WxErrorException { String response = get(API_QUERY_QUOTA, null); diff --git a/weixin-java-open/src/main/java/me/chanjar/weixin/open/bean/result/WxOpenMaGetCodePrivacyInfoResult.java b/weixin-java-open/src/main/java/me/chanjar/weixin/open/bean/result/WxOpenMaGetCodePrivacyInfoResult.java new file mode 100644 index 000000000..1eddd1f81 --- /dev/null +++ b/weixin-java-open/src/main/java/me/chanjar/weixin/open/bean/result/WxOpenMaGetCodePrivacyInfoResult.java @@ -0,0 +1,34 @@ +package me.chanjar.weixin.open.bean.result; + +import com.google.gson.annotations.SerializedName; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.util.List; + +/** + * 获取隐私接口检测返回结果 + * + * @author Yuan + * @version 1.0.0 + * @date 2024-02-01 12:49:58 + */ +@Data +@EqualsAndHashCode(callSuper = true) +public class WxOpenMaGetCodePrivacyInfoResult extends WxOpenResult { + + private static final long serialVersionUID = -2660090947103046607L; + + /** + * 没权限的隐私接口的api英文名 + */ + @SerializedName("without_auth_list") + private List withoutAuthList; + + /** + * 没配置的隐私接口的api英文名 + */ + @SerializedName("without_conf_list") + private List withoutConfList; + +}