You are here

public function OauthTokenFileStorage::getRefreshToken in Apigee Edge 8

File

src/OauthTokenFileStorage.php, line 119

Class

OauthTokenFileStorage
Stores OAuth token data in a file.

Namespace

Drupal\apigee_edge

Code

public function getRefreshToken() : ?string {
  $token_data = $this
    ->getTokenData();
  return $token_data['refresh_token'] ?? NULL;
}