🐛 #3196 【公众号】修复materialImageOrVoiceDownload接口无法正常刷新AccessToken的问题

This commit is contained in:
令狐冲
2023-12-26 23:17:34 +08:00
committed by GitHub
parent 1183ae57d0
commit c9d8351d46

View File

@ -35,7 +35,7 @@ public class MaterialVoiceAndImageDownloadOkhttpRequestExecutor extends Material
Request request = new Request.Builder().url(uri).get().post(requestBody).build();
Response response = client.newCall(request).execute();
String contentTypeHeader = response.header("Content-Type");
if ("text/plain".equals(contentTypeHeader)) {
if ("text/plain".equals(contentTypeHeader) || "application/json; charset=utf-8".equals(contentTypeHeader)) {
String responseContent = response.body().string();
throw new WxErrorException(WxError.fromJson(responseContent, WxType.MP));
}