#14 增加授权code参数传递

This commit is contained in:
Anyon 2020-09-13 13:58:43 +08:00
parent 0d8e889a47
commit 3c22eeb493
2 changed files with 4 additions and 3 deletions

2
We.php
View File

@ -86,7 +86,7 @@ class We
* 定义当前版本
* @var string
*/
const VERSION = '1.2.26';
const VERSION = '1.2.27';
/**
* 静态配置

View File

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