mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
[更新]修改第三方平台服务
This commit is contained in:
parent
ce698b8d2f
commit
236efcf9d2
@ -22,7 +22,7 @@ use WeChat\Exceptions\InvalidResponseException;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 第三方平台支持
|
* 第三方平台支持
|
||||||
* Class Qrcode
|
* Class Open
|
||||||
* @package WeChat
|
* @package WeChat
|
||||||
*/
|
*/
|
||||||
class Open extends WeChat
|
class Open extends WeChat
|
||||||
@ -34,6 +34,9 @@ class Open extends WeChat
|
|||||||
*/
|
*/
|
||||||
public function __construct(array $options)
|
public function __construct(array $options)
|
||||||
{
|
{
|
||||||
|
if (empty($options['component_token'])) {
|
||||||
|
throw new InvalidArgumentException("Missing Config -- [component_token]");
|
||||||
|
}
|
||||||
if (empty($options['component_appid'])) {
|
if (empty($options['component_appid'])) {
|
||||||
throw new InvalidArgumentException("Missing Config -- [component_appid]");
|
throw new InvalidArgumentException("Missing Config -- [component_appid]");
|
||||||
}
|
}
|
||||||
@ -43,9 +46,6 @@ class Open extends WeChat
|
|||||||
if (empty($options['component_encodingaeskey'])) {
|
if (empty($options['component_encodingaeskey'])) {
|
||||||
throw new InvalidArgumentException("Missing Config -- [component_encodingaeskey]");
|
throw new InvalidArgumentException("Missing Config -- [component_encodingaeskey]");
|
||||||
}
|
}
|
||||||
if (empty($options['component_token'])) {
|
|
||||||
throw new InvalidArgumentException("Missing Config -- [component_token]");
|
|
||||||
}
|
|
||||||
$this->config = new DataArray($options);
|
$this->config = new DataArray($options);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -88,7 +88,7 @@ class Open extends WeChat
|
|||||||
'component_verify_ticket' => Tools::get('component_verify_ticket'),
|
'component_verify_ticket' => Tools::get('component_verify_ticket'),
|
||||||
]);
|
]);
|
||||||
if (empty($result['component_access_token'])) {
|
if (empty($result['component_access_token'])) {
|
||||||
throw new InvalidResponseException('Get getComponentAccessToken Faild', '0');
|
throw new InvalidResponseException('GetComponentAccessToken Faild', '0');
|
||||||
}
|
}
|
||||||
Tools::setCache($cache, $component_access_token, 7000);
|
Tools::setCache($cache, $component_access_token, 7000);
|
||||||
}
|
}
|
||||||
@ -186,10 +186,10 @@ class Open extends WeChat
|
|||||||
'authorization_code' => $_GET['auth_code'],
|
'authorization_code' => $_GET['auth_code'],
|
||||||
]);
|
]);
|
||||||
if (empty($result['authorizer_access_token'])) {
|
if (empty($result['authorizer_access_token'])) {
|
||||||
throw new InvalidResponseException('GetQueryComponent Faild.', '0');
|
throw new InvalidResponseException('GetQueryAuthorizerInfo Faild.', '0');
|
||||||
}
|
}
|
||||||
$authorizer_appid = $result['authorizer_appid'];
|
$authorizer_appid = $result['authorizer_appid'];
|
||||||
// 缓存授权公众号访问ACCESS_TOKEN
|
// 缓存授权公众号访问 ACCESS_TOKEN
|
||||||
Tools::setCache("{$authorizer_appid}_access_token", $result['authorizer_access_token'], 7000);
|
Tools::setCache("{$authorizer_appid}_access_token", $result['authorizer_access_token'], 7000);
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
@ -214,7 +214,7 @@ class Open extends WeChat
|
|||||||
if (empty($result['authorizer_access_token'])) {
|
if (empty($result['authorizer_access_token'])) {
|
||||||
throw new InvalidResponseException('RefreshAccessToken Faild', '0');
|
throw new InvalidResponseException('RefreshAccessToken Faild', '0');
|
||||||
}
|
}
|
||||||
// 缓存授权公众号访问ACCESS_TOKEN
|
// 缓存授权公众号访问 ACCESS_TOKEN
|
||||||
Tools::setCache("{$authorizer_appid}_access_token", $result['authorizer_access_token'], 7000);
|
Tools::setCache("{$authorizer_appid}_access_token", $result['authorizer_access_token'], 7000);
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user