mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
#14 增加授权code参数传递
This commit is contained in:
parent
0d8e889a47
commit
3c22eeb493
2
We.php
2
We.php
@ -86,7 +86,7 @@ class We
|
||||
* 定义当前版本
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '1.2.26';
|
||||
const VERSION = '1.2.27';
|
||||
|
||||
/**
|
||||
* 静态配置
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user