Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

直播间信息(WxMaLiveRoomInfo.java)中增加 anchorImg 字段,以解决创建直播间时报错的问题 #2066

Merged
merged 1 commit into from
Apr 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,18 @@ public class WxMaLiveRoomInfo implements Serializable {
private String shareImg;
/**
* 购物直播频道封面图,填入mediaID(mediaID获取后,三天内有效);图片mediaID的获取,请参考以下文档: https://developers.weixin.qq.com/doc/offiaccount/Asset_Management/New_temporary_materials.html; 购物直播频道封面图,图片规则:建议像素800*800,大小不超过100KB;
* <p>
* 该字段仅用于<a href="https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/Mini_Programs/live_player/studio-api.html#6">编辑直播间</a>,不用于创建直播间
* </p>
**/
private String feedsImg;
/**
* 直播间分享图,填入mediaID(mediaID获取后,三天内有效);图片规则:建议像素1080*1920,大小不超过2M;图片mediaID的获取,请参考以下文档: https://developers.weixin.qq.com/doc/offiaccount/Asset_Management/New_temporary_materials.html;
* <p>
* 该字段仅用于<a href="https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/Mini_Programs/live_player/studio-api.html#1">创建直播间</a>,不用于编辑直播间
* </p>
**/
private String anchorImg;
/**
* 是否开启官方收录 【1: 开启,0:关闭】,默认开启收录
**/
Expand Down