SocialiteProviders\Manager\OAuth2\AbstractProvider::parseRefreshToken PHP Method

parseRefreshToken() protected method

Get the refresh token from the token response body.
protected parseRefreshToken ( string $body ) : string
$body string
return string
    protected function parseRefreshToken($body)
    {
        return Arr::get($body, 'refresh_token');
    }