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_edgeCode
public function getRefreshToken() : ?string {
$token_data = $this
->getTokenData();
return $token_data['refresh_token'] ?? NULL;
}