[更新]修正代码异常

This commit is contained in:
Anyon 2018-02-01 17:12:51 +08:00
parent de74caf300
commit ce698b8d2f

View File

@ -127,10 +127,10 @@ class Open extends WeChat
$component_access_token = $this->getComponentAccessToken(); $component_access_token = $this->getComponentAccessToken();
$url = "https://api.weixin.qq.com/cgi-bin/component/ api_set_authorizer_option?component_access_token={$component_access_token}"; $url = "https://api.weixin.qq.com/cgi-bin/component/ api_set_authorizer_option?component_access_token={$component_access_token}";
$result = $this->callPostApi($url, [ $result = $this->callPostApi($url, [
'authorizer_appid' => $authorizer_appid,
'component_appid' => $this->config->get('component_appid'),
'option_name' => $option_name, 'option_name' => $option_name,
'option_value' => $option_value, 'option_value' => $option_value,
'authorizer_appid' => $authorizer_appid,
'component_appid' => $this->config->get('component_appid'),
]); ]);
return $result; return $result;
} }
@ -221,38 +221,37 @@ class Open extends WeChat
/** /**
* oauth 授权跳转接口 * oauth 授权跳转接口
* @param string $appid * @param string $authorizer_appid 授权公众号或小程序的appid
* @param string $redirect_uri 回调地址 * @param string $redirect_uri 回调地址
* @param string $scope snsapi_userinfo|snsapi_base * @param string $scope snsapi_userinfo|snsapi_base
* @return string * @return string
*/ */
public function getOauthRedirect($appid, $redirect_uri, $scope = 'snsapi_userinfo') public function getOauthRedirect($authorizer_appid, $redirect_uri, $scope = 'snsapi_userinfo')
{ {
$redirect_url = urlencode($redirect_uri); $redirect_url = urlencode($redirect_uri);
$component_appid = $this->config->get('component_appid'); $component_appid = $this->config->get('component_appid');
return "https://open.weixin.qq.com/connect/oauth2/authorize?appid={$appid}&redirect_uri={$redirect_url}" return "https://open.weixin.qq.com/connect/oauth2/authorize?appid={$authorizer_appid}&redirect_uri={$redirect_url}"
. "&response_type=code&scope={$scope}&state={$appid}&component_appid={$component_appid}#wechat_redirect"; . "&response_type=code&scope={$scope}&state={$authorizer_appid}&component_appid={$component_appid}#wechat_redirect";
} }
/** /**
* 通过code获取AccessToken * 通过code获取AccessToken
* @param string $appid * @param string $authorizer_appid 授权公众号或小程序的appid
* @return bool|array * @return bool|array
* @throws Exceptions\LocalCacheException * @throws Exceptions\LocalCacheException
* @throws InvalidResponseException * @throws InvalidResponseException
*/ */
public function getOauthAccessToken($appid) public function getOauthAccessToken($authorizer_appid)
{ {
if (empty($_GET['code'])) { if (empty($_GET['code'])) {
return false; return false;
} }
$component_appid = $this->config->get('component_appid'); $component_appid = $this->config->get('component_appid');
$component_access_token = $this->getComponentAccessToken(); $component_access_token = $this->getComponentAccessToken();
$url = "https://api.weixin.qq.com/sns/oauth2/component/access_token?appid={$appid}&code={$_GET['code']}&grant_type=authorization_code&" $url = "https://api.weixin.qq.com/sns/oauth2/component/access_token?appid={$authorizer_appid}&code={$_GET['code']}&grant_type=authorization_code&"
. "component_appid={$component_appid}&component_access_token={$component_access_token}"; . "component_appid={$component_appid}&component_access_token={$component_access_token}";
$result = $this->callGetApi($url); $result = $this->callGetApi($url);
return $result !== false ? $result : false; return $result !== false ? $result : false;
} }
} }