From 8c2651d697c43b7b1a22170b5d5689252acc6901 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 18 Jul 2019 10:50:11 +0800 Subject: [PATCH] Update ReceiveHandler.php --- .../service/handler/ReceiveHandler.php | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/application/service/handler/ReceiveHandler.php b/application/service/handler/ReceiveHandler.php index dc6bcd688..293ea09c3 100644 --- a/application/service/handler/ReceiveHandler.php +++ b/application/service/handler/ReceiveHandler.php @@ -1,15 +1,16 @@ getMessage()}"; } @@ -49,11 +50,15 @@ class ReceiveHandler return $message; } try { - list($data, $openid) = [$service->getReceive(), $service->getOpenid()]; + list($data, $openid) = [$wechat->getReceive(), $wechat->getOpenid()]; if (isset($data['EventKey']) && is_object($data['EventKey'])) $data['EventKey'] = (array)$data['EventKey']; - $input = ['openid' => $openid, 'appid' => $appid, 'receive' => serialize($data), 'encrypt' => intval($service->isEncrypt())]; + $input = ['openid' => $openid, 'appid' => $appid, 'receive' => serialize($data), 'encrypt' => intval($wechat->isEncrypt())]; if (is_string($result = http_post($config['appuri'], $input, ['timeout' => 30]))) { - return $result; + if (is_array($json = json_decode($result, true))) { + return $wechat->reply($json, true, $wechat->isEncrypt()); + } else { + return $result; + } } } catch (\Exception $e) { \think\facade\Log::error("微信{$appid}接口调用异常,{$e->getMessage()}");