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); }