diff --git a/app/common/library/wxserver/Server.php b/app/common/library/wxserver/Server.php index c508d2af..f9fb9829 100644 --- a/app/common/library/wxserver/Server.php +++ b/app/common/library/wxserver/Server.php @@ -48,9 +48,6 @@ class Server public function getStableAccessToken() { - if (Cache::has('StableAccessToken')) { - return Cache::get('StableAccessToken'); - } $url = 'https://api.weixin.qq.com/cgi-bin/stable_token'; $data['grant_type'] = 'client_credential'; $data['appid'] = self::APPID; @@ -58,7 +55,6 @@ class Server $result = $this->curlPost($url, json_encode($data), 10); $result = json_decode($result, true); if (!empty($result['access_token'])) { - Cache::set('StableAccessToken', $result['access_token'], 6200); return $result['access_token']; } } @@ -327,9 +323,9 @@ class Server */ public function getTemplatelist(): array { -// if (Cache::has('wx_server_templatelist')) { -// return Cache::get('wx_server_templatelist'); -// } + if (Cache::has('wx_server_templatelist')) { + return Cache::get('wx_server_templatelist'); + } $token = $this->getStableAccessToken(); $list = []; if ($token) {