Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/google/auth/src/
DApplicationDefaultCredentials.php83 * @param callable $httpHandler callback which delivers psr7 request
92 callable $httpHandler = null, argument
96 $creds = self::getCredentials($scope, $httpHandler, $cacheConfig, $cache);
99 return new AuthTokenSubscriber($creds, $httpHandler);
111 * @param callable $httpHandler callback which delivers psr7 request
122 callable $httpHandler = null, argument
127 $creds = self::getCredentials($scope, $httpHandler, $cacheConfig, $cache, $quotaProject);
129 return new AuthTokenMiddleware($creds, $httpHandler);
138 * @param callable $httpHandler callback which delivers psr7 request
153 callable $httpHandler = null, argument
[all …]
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 …]
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);
DAccessToken.php309 $httpHandler = $this->httpHandler;
311 $response = $httpHandler($request, $options);
384 $httpHandler = $this->httpHandler;
385 $response = $httpHandler(new Request('GET', $url), $options);
DProjectIdProviderInterface.php28 * @param callable $httpHandler Callback which delivers psr7 request
31 public function getProjectId(callable $httpHandler = null); argument
DFetchAuthTokenInterface.php28 * @param callable $httpHandler callback which delivers psr7 request
31 public function fetchAuthToken(callable $httpHandler = null); argument
DUpdateMetadataInterface.php33 * @param callable $httpHandler callback which delivers psr7 request
39 callable $httpHandler = null argument
DSignBlobInterface.php39 * @param callable $httpHandler callback which delivers psr7 request, if
43 public function getClientName(callable $httpHandler = null); argument
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/
DGCECredentials.php310 * @param callable $httpHandler callback which delivers psr7 request
313 public static function onGce(callable $httpHandler = null) argument
315 $httpHandler = $httpHandler
471 $httpHandler = HttpHandlerFactory::build(HttpClientCache::getHttpClient());
475 $signer = $this->iam ?: new Iam($httpHandler);
477 $email = $this->getClientName($httpHandler);
483 : $this->fetchAuthToken($httpHandler)['access_token'];
494 * @param callable $httpHandler Callback which delivers psr7 request
497 public function getProjectId(callable $httpHandler = null) argument
503 $httpHandler = $httpHandler
[all …]
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);
267 $updatedMetadata = $jwtCreds->updateMetadata($metadata, null, $httpHandler);
[all …]
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
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
DUserRefreshCredentials.php100 * @param callable $httpHandler
112 public function fetchAuthToken(callable $httpHandler = null) argument
114 return $this->auth->fetchAuthToken($httpHandler);
DInsecureCredentials.php39 * @param callable $httpHandler
42 public function fetchAuthToken(callable $httpHandler = null) argument
DIAMCredentials.php74 * @param callable $httpHandler callback which delivers psr7 request
83 callable $httpHandler = null argument
/plugin/authgooglesheets/vendor/google/auth/src/Middleware/
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);
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);
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
DRevoke.php75 $httpHandler = HttpHandlerFactory::build($this->http);
77 $response = $httpHandler($request);
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
DREST.php82 $httpHandler = HttpHandlerFactory::build($client);
83 $response = $httpHandler($request);
/plugin/authgooglesheets/vendor/google/apiclient/src/
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/
Dvideo.min.js12 …===window.confirm||e===window.prompt)},Qt=Object.prototype.toString;ei.httpHandler=function(n,r){r…