🎨 #3356【公众号】草稿箱模块新建草稿/修改草稿接口补充字段

This commit is contained in:
zhuangzibin 2024-10-09 12:35:32 +08:00 committed by GitHub
parent 172a49c18c
commit 2226693f59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 19 additions and 6 deletions

View File

@ -79,6 +79,18 @@ public class WxMpDraftArticles implements ToJson, Serializable {
@SerializedName("thumb_url")
private String thumbUrl;
/**
* 封面裁剪为2.35:1规格的坐标字段以原始图片thumb_media_id左上角0,0右下角1,1建立平面坐标系经过裁剪后的图片其左上角所在的坐标即为X1,Y1,右下角所在的坐标则为X2,Y2用分隔符_拼接为X1_Y1_X2_Y2每个坐标值的精度为不超过小数点后6位数字示例见下图图中(X1,Y1) 等于0.1945,0,(X2,Y2)等于1,0.5236所以请求参数值为0.1945_0_1_0.5236
*/
@SerializedName("pic_crop_235_1")
private String picCrop2351;
/**
* 封面裁剪为1:1规格的坐标字段裁剪原理同pic_crop_235_1裁剪后的图片必须符合规格要求
*/
@SerializedName("pic_crop_1_1")
private String picCrop11;
public static WxMpDraftArticles fromJson(String json) {
return WxGsonBuilder.create().fromJson(json, WxMpDraftArticles.class);
}

View File

@ -4,11 +4,7 @@ import com.google.inject.Inject;
import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.mp.api.WxMpService;
import me.chanjar.weixin.mp.api.test.ApiTestModule;
import me.chanjar.weixin.mp.bean.draft.WxMpAddDraft;
import me.chanjar.weixin.mp.bean.draft.WxMpDraftArticles;
import me.chanjar.weixin.mp.bean.draft.WxMpDraftInfo;
import me.chanjar.weixin.mp.bean.draft.WxMpDraftList;
import me.chanjar.weixin.mp.bean.draft.WxMpUpdateDraft;
import me.chanjar.weixin.mp.bean.draft.*;
import org.testng.annotations.Guice;
import org.testng.annotations.Test;
@ -59,6 +55,8 @@ public class WxMpDraftServiceImplTest {
.thumbMediaId(thumbMediaId)
// 显示封面打开评论所有人可评论
.showCoverPic(1).needOpenComment(1).onlyFansCanComment(0)
.picCrop2351("0.1945_0_1_0.5236")
.picCrop11("0.1945_0_1_0.5236")
.build();
draftArticleList.add(draftArticle);
@ -78,7 +76,10 @@ public class WxMpDraftServiceImplTest {
@Test
public void testUpdateDraft() throws WxErrorException {
WxMpDraftArticles draftArticles = WxMpDraftArticles.builder()
.title("新标题").content("新图文消息的具体内容").thumbMediaId(thumbMediaId).build();
.title("新标题").content("新图文消息的具体内容").thumbMediaId(thumbMediaId)
.picCrop2351("0.1945_0_1_0.5236")
.picCrop11("0.1945_0_1_0.5236")
.build();
WxMpUpdateDraft updateDraft = WxMpUpdateDraft.builder()
.mediaId(mediaId)
.index(0)