mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
[更新]修改第三方平台服务
This commit is contained in:
parent
236efcf9d2
commit
02d0532abe
@ -185,12 +185,11 @@ class Open extends WeChat
|
|||||||
'component_appid' => $this->config->get('component_appid'),
|
'component_appid' => $this->config->get('component_appid'),
|
||||||
'authorization_code' => $_GET['auth_code'],
|
'authorization_code' => $_GET['auth_code'],
|
||||||
]);
|
]);
|
||||||
if (empty($result['authorizer_access_token'])) {
|
if (empty($result['authorizer_appid']) || empty($result['authorizer_access_token'])) {
|
||||||
throw new InvalidResponseException('GetQueryAuthorizerInfo Faild.', '0');
|
throw new InvalidResponseException('GetQueryAuthorizerInfo Faild.', '0');
|
||||||
}
|
}
|
||||||
$authorizer_appid = $result['authorizer_appid'];
|
|
||||||
// 缓存授权公众号访问 ACCESS_TOKEN
|
// 缓存授权公众号访问 ACCESS_TOKEN
|
||||||
Tools::setCache("{$authorizer_appid}_access_token", $result['authorizer_access_token'], 7000);
|
Tools::setCache("{$result['authorizer_appid']}_access_token", $result['authorizer_access_token'], 7000);
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user