Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix微信永久素材下载返回json 和ok下载永久素材丢失流的问题
  • Loading branch information
shenliuming committed Dec 30, 2023
commit e37b3951cfb42516e4c66e72a8772c4503110dbd
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public InputStream execute(String uri, String materialId, WxType wxType) throws
// 下载媒体文件出错
byte[] responseContent = IOUtils.toByteArray(inputStream);
String responseContentString = new String(responseContent, StandardCharsets.UTF_8);
if (responseContentString.length() <= 128) {
if (responseContentString.length() <= 215) {
try {
WxError wxError = WxGsonBuilder.create().fromJson(responseContentString, WxError.class);
if (wxError.getErrorCode() != 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public InputStream execute(String uri, String materialId, WxType wxType) throws
// 下载媒体文件出错
byte[] responseContent = IOUtils.toByteArray(inputStream);
String responseContentString = new String(responseContent, StandardCharsets.UTF_8);
if (responseContentString.length() <= 128) {
if (responseContentString.length() <= 215) {
try {
WxError wxError = WxGsonBuilder.create().fromJson(responseContentString, WxError.class);
if (wxError.getErrorCode() != 0) {
Expand Down