mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 08:37:32 +08:00
🆕 #3232 【开放平台】小程序增加获取隐私接口检测结果的API
This commit is contained in:
parent
1589a85064
commit
ad6ad003bc
@ -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;
|
||||
|
||||
///////////////////////////////////////
|
||||
// 扫一扫事件推送
|
||||
///////////////////////////////////////
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user