Skip to content

Commit

Permalink
fix: accesstoken (#2801)
Browse files Browse the repository at this point in the history
  • Loading branch information
panyasi committed Mar 29, 2024
1 parent 941de52 commit 8902917
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/OfficialAccount/AccessToken.php
Expand Up @@ -46,7 +46,7 @@ public function __construct(

public function getKey(): string
{
return $this->key ?? $this->key = sprintf('%s.access_token.%s.%s', static::CACHE_KEY_PREFIX, $this->appId, $this->secret);
return $this->key ?? $this->key = sprintf('%s.access_token.%s.%s.%s', static::CACHE_KEY_PREFIX, $this->appId, $this->secret, (int)$this->stable);
}

public function setKey(string $key): static
Expand Down Expand Up @@ -132,7 +132,7 @@ public function getStableAccessToken(bool $force_refresh = false): string
)->toArray(false);

if (empty($response['access_token'])) {
throw new HttpException('Failed to get stable access_token: '.json_encode($response, JSON_UNESCAPED_UNICODE));
throw new HttpException('Failed to get stable access_token: ' . json_encode($response, JSON_UNESCAPED_UNICODE));
}

$this->cache->set($this->getKey(), $response['access_token'], intval($response['expires_in']));
Expand Down Expand Up @@ -164,7 +164,7 @@ public function getAccessToken(): string
)->toArray(false);

if (empty($response['access_token'])) {
throw new HttpException('Failed to get access_token: '.json_encode($response, JSON_UNESCAPED_UNICODE));
throw new HttpException('Failed to get access_token: ' . json_encode($response, JSON_UNESCAPED_UNICODE));
}

$this->cache->set($this->getKey(), $response['access_token'], intval($response['expires_in']));
Expand Down

0 comments on commit 8902917

Please sign in to comment.