From 8dffe539af6e2ae8dafad757f675b6c210600ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Mon, 1 Mar 2021 12:59:31 +0800 Subject: [PATCH] Update Login.php --- app/wechat/controller/api/Login.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/wechat/controller/api/Login.php b/app/wechat/controller/api/Login.php index 770b6ef87..b9fa2c25f 100644 --- a/app/wechat/controller/api/Login.php +++ b/app/wechat/controller/api/Login.php @@ -75,7 +75,7 @@ class Login extends Controller $this->fans = WechatService::instance()->getWebOauthInfo($this->url, $this->mode); if (is_array($this->fans) && isset($this->fans['openid'])) { $this->fans['token'] = md5(uniqid('t', true) . rand(10000, 99999)); - $this->app->cache->set("wxlog_{$this->code}", $this->fans, $this->expire); + $this->app->cache->set("wxlogin{$this->code}", $this->fans, $this->expire); $this->app->cache->set($this->fans['openid'], $this->fans['token'], $this->expire); $this->message = '授权成功'; $this->fetch('success'); @@ -98,7 +98,7 @@ class Login extends Controller { $this->code = input('code', ''); if (stripos($this->code, $this->prefix) === 0) { - $this->ckey = "wxlog_{$this->code}"; + $this->ckey = "wxlogin{$this->code}"; $this->fans = $this->app->cache->get($this->ckey, new \stdClass()); $this->success('获取授权信息', $this->fans); } else {