mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-04 12:47:46 +08:00
#317 修复小程序请求二维码时对错误类型检查(text/plain 改为 app/json)
* 更新messageSend自动向wxCpConfigStorage里获取agentId * 修复小程序请求二维码时对错误类型检查(text/plain 改为 app/json) * 修复小程序请求二维码时对错误类型检查(text/plain 改为 app/json)
This commit is contained in:
parent
f0d3a1af73
commit
bf1ce7ff16
@ -48,7 +48,7 @@ public class QrCodeRequestExecutor implements RequestExecutor<File, WxMaQrcodeWr
|
|||||||
InputStream inputStream = InputStreamResponseHandler.INSTANCE.handleResponse(response);) {
|
InputStream inputStream = InputStreamResponseHandler.INSTANCE.handleResponse(response);) {
|
||||||
Header[] contentTypeHeader = response.getHeaders("Content-Type");
|
Header[] contentTypeHeader = response.getHeaders("Content-Type");
|
||||||
if (contentTypeHeader != null && contentTypeHeader.length > 0
|
if (contentTypeHeader != null && contentTypeHeader.length > 0
|
||||||
&& ContentType.TEXT_PLAIN.getMimeType().equals(contentTypeHeader[0].getValue())) {
|
&& ContentType.APPLICATION_JSON.getMimeType().equals(contentTypeHeader[0].getValue())) {
|
||||||
String responseContent = Utf8ResponseHandler.INSTANCE.handleResponse(response);
|
String responseContent = Utf8ResponseHandler.INSTANCE.handleResponse(response);
|
||||||
throw new WxErrorException(WxError.fromJson(responseContent));
|
throw new WxErrorException(WxError.fromJson(responseContent));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user