protected function Client::getTokenRefreshToken in OAuth2 Client 7
Same name and namespace in other branches
- 7.2 src/Client.php \OAuth2\Client::getTokenRefreshToken()
Get a new access_token using the refresh_token.
This is used for the server-side and user-password flows (not for client-credentials, there is no refresh_token in it).
1 call to Client::getTokenRefreshToken()
- Client::getAccessToken in ./
oauth2_client.inc - Get and return an access token.
File
- ./
oauth2_client.inc, line 259 - Class OAuth2\Client
Class
- Client
- The class OAuth2\Client is used to get authorization from an oauth2 server. Its only goal is to get an access_token from the oauth2 server, so the only public function (besides the constructor) is getAccessToken().
Namespace
OAuth2Code
protected function getTokenRefreshToken() {
if (!$this->token['refresh_token']) {
throw new \Exception(t('There is no refresh_token.'));
}
return $this
->getToken(array(
'grant_type' => 'refresh_token',
'refresh_token' => $this->token['refresh_token'],
));
}