From 24bde9298c9c5d4bffe31ef5133df0b9ad4952f8 Mon Sep 17 00:00:00 2001 From: akingzwk <57396633+akingzwk@users.noreply.github.com> Date: Wed, 11 Aug 2021 09:47:34 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20=20#2253=20=E3=80=90=E4=BC=81=E4=B8=9A?= =?UTF-8?q?=E5=BE=AE=E4=BF=A1=E3=80=91=E4=BF=AE=E5=A4=8D=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E5=95=86=E6=A8=A1=E5=BC=8F=E9=80=9A=E8=BF=87=E6=8E=88=E6=9D=83?= =?UTF-8?q?=E7=A0=81=E8=8E=B7=E5=8F=96=E7=99=BB=E5=BD=95=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E7=9A=84=E4=BF=A1=E6=81=AF=E8=BF=94=E5=9B=9E=E2=80=9D=E4=B8=8D?= =?UTF-8?q?=E5=90=88=E6=B3=95=E7=9A=84=E7=9A=84suite=5Fticket=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E2=80=9C=E7=9A=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../weixin/cp/tp/service/impl/BaseWxCpTpServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/tp/service/impl/BaseWxCpTpServiceImpl.java b/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/tp/service/impl/BaseWxCpTpServiceImpl.java index 89903d6f0..03316b9ae 100644 --- a/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/tp/service/impl/BaseWxCpTpServiceImpl.java +++ b/weixin-java-cp/src/main/java/me/chanjar/weixin/cp/tp/service/impl/BaseWxCpTpServiceImpl.java @@ -461,7 +461,7 @@ public abstract class BaseWxCpTpServiceImpl implements WxCpTpService, Requ JsonObject jsonObject = new JsonObject(); jsonObject.addProperty("auth_code", authCode); String access_token = getWxCpProviderToken(); - String responseText = post(configStorage.getApiUrl(GET_LOGIN_INFO) + "?access_token=" + access_token, jsonObject.toString()); + String responseText = post(configStorage.getApiUrl(GET_LOGIN_INFO) + "?access_token=" + access_token, jsonObject.toString(), true); return WxTpLoginInfo.fromJson(responseText); }