🆕 #3232 【开放平台】小程序增加获取隐私接口检测结果的API

This commit is contained in:
Leandra Green 2024-03-02 18:10:49 +08:00 committed by GitHub
parent 1589a85064
commit ad6ad003bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 69 additions and 0 deletions

View File

@ -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;
///////////////////////////////////////
// 扫一扫事件推送
///////////////////////////////////////

View File

@ -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

View File

@ -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);

View File

@ -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<String> withoutAuthList;
/**
* 没配置的隐私接口的api英文名
*/
@SerializedName("without_conf_list")
private List<String> withoutConfList;
}