我想撤销 Token 以使用它更长时间,我的代码以标准重定向 -> getToken 流开头:
$code = (array_key_exists('code', $_GET) ? $_GET['code'] : '');
$access_token = json_decode(DB::getToken(), true);
$guzzleClient = new GuzzleHttpClient(array( 'curl' => array( CURLOPT_SSL_VERIFYPEER => false, ), ));
$this->client = new Google_Client();
$this->client->setHttpClient($guzzleClient);
$this->client->setAuthConfig('client_secret.json');
$this->client->addScope("https://www.googleapis.com/auth/calendar");
$this->client->setAccessType('offline');
$this->client->setApprovalPrompt('force');
$this->client->setAccessToken($access_token);
if(!$code && !$access_token) {
$auth_url = $this->client->createAuthUrl();
header('Location: ' . filter_var($auth_url, FILTER_SANITIZE_URL));
}
if($code && !$access_token) {
$this->client->fetchAccessTokenWithAuthCode($code);
$access_token = $this->client->getAccessToken();
DB::saveToken($access_token);
}
在这里,我检查访问令牌是否已过期,如果是,我将撤销令牌并期望继续使用它而不会出现问题:
if($this->client->isAccessTokenExpired()) {
$revoked = $this->client->revokeToken($access_token);
if($revoked) {
$access_token = $this->client->getAccessToken();
}
}
虽然出现问题和错误,但我收到Token expired or revoked
错误消息。
我在这里做错了什么?
我希望撤销后,令牌再次有效。
我希望撤销后,令牌再次有效。
过期或吊销的访问令牌不能再使用。撤销过期的访问令牌也是没有用的。
我在您的代码中看到您要求提供offline
访问令牌。应会收到刷新令牌。您要做的是使用该刷新令牌或获取新的访问令牌。有关更多信息,请参阅该帖子。