diff --git a/src/GoogleOAuth2Handler.php b/src/GoogleOAuth2Handler.php index efb4139..7cf87ac 100644 --- a/src/GoogleOAuth2Handler.php +++ b/src/GoogleOAuth2Handler.php @@ -52,12 +52,12 @@ public function getRefreshToken($authCode) return $accessToken['refresh_token']; } - public function performRequest($method, $url, $body = null) + public function performRequest($method, $url, $body = null, $options = []) { $httpClient = $this->client->authorize(); - $request = new Request($method, $url, [], $body); + $request = new Request($method, $url, $options, $body); $response = $httpClient->send($request); return $response; } -} \ No newline at end of file +}