From 3c22eeb493b98d225081f431ca0632611810951d Mon Sep 17 00:00:00 2001 From: Anyon Date: Sun, 13 Sep 2020 13:58:43 +0800 Subject: [PATCH] =?UTF-8?q?#14=20=E5=A2=9E=E5=8A=A0=E6=8E=88=E6=9D=83code?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E4=BC=A0=E9=80=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- We.php | 2 +- WeChat/Oauth.php | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/We.php b/We.php index f582eb6..bbc49c1 100644 --- a/We.php +++ b/We.php @@ -86,7 +86,7 @@ class We * 定义当前版本 * @var string */ - const VERSION = '1.2.26'; + const VERSION = '1.2.27'; /** * 静态配置 diff --git a/WeChat/Oauth.php b/WeChat/Oauth.php index 2cb79d0..e9691f3 100644 --- a/WeChat/Oauth.php +++ b/WeChat/Oauth.php @@ -40,15 +40,16 @@ class Oauth extends BasicWeChat /** * 通过 code 获取 AccessToken 和 openid + * @param string $code 授权Code值,不传则取GET参数 * @return bool|array * @throws Exceptions\InvalidResponseException * @throws Exceptions\LocalCacheException */ - public function getOauthAccessToken() + public function getOauthAccessToken($code = '') { $appid = $this->config->get('appid'); $appsecret = $this->config->get('appsecret'); - $code = isset($_GET['code']) ? $_GET['code'] : ''; + $code = $code ? $code : (isset($_GET['code']) ? $_GET['code'] : ''); $url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid={$appid}&secret={$appsecret}&code={$code}&grant_type=authorization_code"; return $this->httpGetForJson($url); }