We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2fae18 commit d6a29c1Copy full SHA for d6a29c1
src/Google/Client.php
@@ -1056,7 +1056,11 @@ private function createApplicationDefaultCredentials()
1056
1057
protected function getAuthHandler()
1058
{
1059
- return Google_AuthHandler_AuthHandlerFactory::build($this->getCache());
+ // we intentionally do not use the cache because
1060
+ // the underlying auth library's cache implementation
1061
+ // is broken.
1062
+ // @see https://github.com/google/google-api-php-client/issues/821
1063
+ return Google_AuthHandler_AuthHandlerFactory::build();
1064
}
1065
1066
private function createUserRefreshCredentials($scope, $refreshToken)
0 commit comments