Home
last modified time | relevance | path

Searched refs:httpHandler (Results 1 – 22 of 22) sorted by relevance

/plugin/authgooglesheets/vendor/google/auth/src/
H A DApplicationDefaultCredentials.php92 callable $httpHandler = null, argument
99 return new AuthTokenSubscriber($creds, $httpHandler);
122 callable $httpHandler = null, argument
129 return new AuthTokenMiddleware($creds, $httpHandler);
153 callable $httpHandler = null, argument
164 if (!$httpHandler) {
215 callable $httpHandler = null, argument
221 return new AuthTokenMiddleware($creds, $httpHandler);
242 callable $httpHandler = null, argument
267 callable $httpHandler = null, argument
[all …]
H A DFetchAuthTokenCache.php64 * @param callable $httpHandler callback which delivers psr7 request
68 public function fetchAuthToken(callable $httpHandler = null) argument
74 $auth_token = $this->fetcher->fetchAuthToken($httpHandler);
100 * @param callable $httpHandler An HTTP handler to deliver PSR7 requests.
103 public function getClientName(callable $httpHandler = null) argument
112 return $this->fetcher->getClientName($httpHandler);
169 public function getProjectId(callable $httpHandler = null) argument
178 return $this->fetcher->getProjectId($httpHandler);
186 * @param callable $httpHandler callback which delivers psr7 request
194 callable $httpHandler = null argument
[all …]
H A DGCECache.php63 * @param callable $httpHandler callback which delivers psr7 request
66 public function onGce(callable $httpHandler = null) argument
69 return GCECredentials::onGce($httpHandler);
76 $onGce = GCECredentials::onGce($httpHandler);
H A DAccessToken.php309 $httpHandler = $this->httpHandler;
311 $response = $httpHandler($request, $options);
384 $httpHandler = $this->httpHandler;
385 $response = $httpHandler(new Request('GET', $url), $options);
H A DProjectIdProviderInterface.php28 * @param callable $httpHandler Callback which delivers psr7 request
31 public function getProjectId(callable $httpHandler = null); argument
H A DFetchAuthTokenInterface.php28 * @param callable $httpHandler callback which delivers psr7 request
31 public function fetchAuthToken(callable $httpHandler = null); argument
H A DUpdateMetadataInterface.php33 * @param callable $httpHandler callback which delivers psr7 request
39 callable $httpHandler = null argument
H A DSignBlobInterface.php39 * @param callable $httpHandler callback which delivers psr7 request, if
43 public function getClientName(callable $httpHandler = null); argument
H A DOAuth2.php535 * @param callable $httpHandler callback which delivers psr7 request
538 public function fetchAuthToken(callable $httpHandler = null) argument
540 if (is_null($httpHandler)) {
541 $httpHandler = HttpHandlerFactory::build(HttpClientCache::getHttpClient());
544 $response = $httpHandler($this->generateCredentialsRequest());
1420 * @param callable $httpHandler
1424 public function getClientName(callable $httpHandler = null) argument
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
H A DGCECredentials.php310 * @param callable $httpHandler callback which delivers psr7 request
313 public static function onGce(callable $httpHandler = null) argument
315 $httpHandler = $httpHandler
475 $signer = $this->iam ?: new Iam($httpHandler);
477 $email = $this->getClientName($httpHandler);
483 : $this->fetchAuthToken($httpHandler)['access_token'];
497 public function getProjectId(callable $httpHandler = null) argument
503 $httpHandler = $httpHandler
507 $this->isOnGce = self::onGce($httpHandler);
526 private function getFromMetadata(callable $httpHandler, $uri) argument
[all …]
H A DServiceAccountCredentials.php181 * @param callable $httpHandler
191 public function fetchAuthToken(callable $httpHandler = null) argument
196 $accessToken = $jwtCreds->fetchAuthToken($httpHandler);
205 return $this->auth->fetchAuthToken($httpHandler);
238 * @param callable $httpHandler Not used by this credentials type.
241 public function getProjectId(callable $httpHandler = null) argument
251 * @param callable $httpHandler callback which delivers psr7 request
257 callable $httpHandler = null argument
261 return parent::updateMetadata($metadata, $authUri, $httpHandler);
315 * @param callable $httpHandler Not used by this credentials type.
[all …]
H A DServiceAccountJwtAccessCredentials.php112 * @param callable $httpHandler callback which delivers psr7 request
118 callable $httpHandler = null argument
127 return parent::updateMetadata($metadata, $authUri, $httpHandler);
133 * @param callable $httpHandler
137 public function fetchAuthToken(callable $httpHandler = null) argument
180 * @param callable $httpHandler Not used by this credentials type.
183 public function getProjectId(callable $httpHandler = null) argument
193 * @param callable $httpHandler Not used by this credentials type.
196 public function getClientName(callable $httpHandler = null) argument
H A DAppIdentityCredentials.php119 * @param callable $httpHandler callback which delivers psr7 request
127 public function fetchAuthToken(callable $httpHandler = null) argument
164 * @param callable $httpHandler Not used by this type.
167 public function getProjectId(callable $httpHandler = null) argument
184 * @param callable $httpHandler Not used in this implementation.
188 public function getClientName(callable $httpHandler = null) argument
H A DUserRefreshCredentials.php100 * @param callable $httpHandler
112 public function fetchAuthToken(callable $httpHandler = null) argument
114 return $this->auth->fetchAuthToken($httpHandler);
H A DInsecureCredentials.php39 * @param callable $httpHandler
42 public function fetchAuthToken(callable $httpHandler = null) argument
H A DIAMCredentials.php74 * @param callable $httpHandler callback which delivers psr7 request
83 callable $httpHandler = null argument
/plugin/authgooglesheets/vendor/google/auth/src/Middleware/
H A DAuthTokenMiddleware.php40 private $httpHandler; variable in Google\\Auth\\Middleware\\AuthTokenMiddleware
56 * @param callable $httpHandler (optional) callback which delivers psr7 request
61 callable $httpHandler = null, argument
65 $this->httpHandler = $httpHandler;
122 $auth_tokens = $this->fetcher->fetchAuthToken($this->httpHandler);
H A DProxyAuthTokenMiddleware.php40 private $httpHandler; variable in Google\\Auth\\Middleware\\ProxyAuthTokenMiddleware
56 * @param callable $httpHandler (optional) callback which delivers psr7 request
61 callable $httpHandler = null, argument
65 $this->httpHandler = $httpHandler;
122 $auth_tokens = $this->fetcher->fetchAuthToken($this->httpHandler);
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DRevoke.php75 $httpHandler = HttpHandlerFactory::build($this->http);
77 $response = $httpHandler($request);
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DREST.php82 $httpHandler = HttpHandlerFactory::build($client);
83 $response = $httpHandler($request);
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php256 $httpHandler = HttpHandlerFactory::build($this->getHttpClient());
257 $creds = $auth->fetchAuthToken($httpHandler);
302 $httpHandler = HttpHandlerFactory::build($authHttp);
303 $creds = $credentials->fetchAuthToken($httpHandler);
343 $httpHandler = HttpHandlerFactory::build($this->getHttpClient());
344 $creds = $auth->fetchAuthToken($httpHandler);
/plugin/html5video2/script/
H A Dvideo.min.js12 …===window.confirm||e===window.prompt)},Qt=Object.prototype.toString;ei.httpHandler=function(n,r){r… function