From 02d0532abe1682aec93db3e456ee0fc1e23e14d2 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 1 Feb 2018 17:16:50 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E7=AC=AC?= =?UTF-8?q?=E4=B8=89=E6=96=B9=E5=B9=B3=E5=8F=B0=E6=9C=8D=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Open.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/WeChat/Open.php b/WeChat/Open.php index 6c5b7ca..b5f48de 100644 --- a/WeChat/Open.php +++ b/WeChat/Open.php @@ -185,12 +185,11 @@ class Open extends WeChat 'component_appid' => $this->config->get('component_appid'), 'authorization_code' => $_GET['auth_code'], ]); - if (empty($result['authorizer_access_token'])) { + if (empty($result['authorizer_appid']) || empty($result['authorizer_access_token'])) { throw new InvalidResponseException('GetQueryAuthorizerInfo Faild.', '0'); } - $authorizer_appid = $result['authorizer_appid']; // 缓存授权公众号访问 ACCESS_TOKEN - Tools::setCache("{$authorizer_appid}_access_token", $result['authorizer_access_token'], 7000); + Tools::setCache("{$result['authorizer_appid']}_access_token", $result['authorizer_access_token'], 7000); return $result; }