diff --git a/application/service/handler/PublishHandler.php b/application/service/handler/PublishHandler.php index 7369b661c..9a564e3bd 100644 --- a/application/service/handler/PublishHandler.php +++ b/application/service/handler/PublishHandler.php @@ -52,10 +52,7 @@ class PublishHandler case 'text': $receive = $wechat->getReceive(); if ($receive['Content'] === 'TESTCOMPONENT_MSG_TYPE_TEXT') { - $xml = $wechat->text('TESTCOMPONENT_MSG_TYPE_TEXT_callback')->reply([], true); - p('====测试回复文本======'); - p($xml); - return $xml; + return $wechat->text('TESTCOMPONENT_MSG_TYPE_TEXT_callback')->reply([], true); } else { $key = str_replace("QUERY_AUTH_CODE:", '', $receive['Content']); WechatService::instance('Service')->getQueryAuthorizerInfo($key); diff --git a/application/service/handler/ReceiveHandler.php b/application/service/handler/ReceiveHandler.php index 28a0b15d3..293ea09c3 100644 --- a/application/service/handler/ReceiveHandler.php +++ b/application/service/handler/ReceiveHandler.php @@ -55,12 +55,7 @@ class ReceiveHandler $input = ['openid' => $openid, 'appid' => $appid, 'receive' => serialize($data), 'encrypt' => intval($wechat->isEncrypt())]; if (is_string($result = http_post($config['appuri'], $input, ['timeout' => 30]))) { if (is_array($json = json_decode($result, true))) { - $xml = $wechat->reply($json, true, $wechat->isEncrypt()); - p(""); - p("====== 准备回复的内容如下 ========"); - p($xml); - ob_clean(); - exit($xml); + return $wechat->reply($json, true, $wechat->isEncrypt()); } else { return $result; } diff --git a/application/wechat/controller/api/Push.php b/application/wechat/controller/api/Push.php index 033cf0c8d..a4cdeddd9 100644 --- a/application/wechat/controller/api/Push.php +++ b/application/wechat/controller/api/Push.php @@ -95,8 +95,8 @@ class Push extends Controller { try { if ($this->request->has('receive', 'post') && WechatService::getType() === 'thr') { - $this->forceJson = true; // 强制返回JSON到服务端再转发 - $this->forceCustom = false; // 暂停使用客户消息模式 + $this->forceJson = false; // 强制返回JSON到服务端再转发 + $this->forceCustom = true; // 强制使用客户消息模式 $this->appid = $this->request->post('appid', '', null); $this->openid = $this->request->post('openid', '', null); $this->encrypt = boolval($this->request->post('encrypt', 0));