/plugin/authgooglesheets/vendor/google/auth/src/ |
H A D | ApplicationDefaultCredentials.php | 92 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 D | FetchAuthTokenCache.php | 64 * @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 D | GCECache.php | 63 * @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 D | AccessToken.php | 309 $httpHandler = $this->httpHandler; 311 $response = $httpHandler($request, $options); 384 $httpHandler = $this->httpHandler; 385 $response = $httpHandler(new Request('GET', $url), $options);
|
H A D | ProjectIdProviderInterface.php | 28 * @param callable $httpHandler Callback which delivers psr7 request 31 public function getProjectId(callable $httpHandler = null); argument
|
H A D | FetchAuthTokenInterface.php | 28 * @param callable $httpHandler callback which delivers psr7 request 31 public function fetchAuthToken(callable $httpHandler = null); argument
|
H A D | UpdateMetadataInterface.php | 33 * @param callable $httpHandler callback which delivers psr7 request 39 callable $httpHandler = null argument
|
H A D | SignBlobInterface.php | 39 * @param callable $httpHandler callback which delivers psr7 request, if 43 public function getClientName(callable $httpHandler = null); argument
|
H A D | OAuth2.php | 535 * @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 D | GCECredentials.php | 310 * @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 D | ServiceAccountCredentials.php | 181 * @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 D | ServiceAccountJwtAccessCredentials.php | 112 * @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 D | AppIdentityCredentials.php | 119 * @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 D | UserRefreshCredentials.php | 100 * @param callable $httpHandler 112 public function fetchAuthToken(callable $httpHandler = null) argument 114 return $this->auth->fetchAuthToken($httpHandler);
|
H A D | InsecureCredentials.php | 39 * @param callable $httpHandler 42 public function fetchAuthToken(callable $httpHandler = null) argument
|
H A D | IAMCredentials.php | 74 * @param callable $httpHandler callback which delivers psr7 request 83 callable $httpHandler = null argument
|
/plugin/authgooglesheets/vendor/google/auth/src/Middleware/ |
H A D | AuthTokenMiddleware.php | 40 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 D | ProxyAuthTokenMiddleware.php | 40 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 D | Revoke.php | 75 $httpHandler = HttpHandlerFactory::build($this->http); 77 $response = $httpHandler($request);
|
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/ |
H A D | REST.php | 82 $httpHandler = HttpHandlerFactory::build($client); 83 $response = $httpHandler($request);
|
/plugin/authgooglesheets/vendor/google/apiclient/src/ |
H A D | Client.php | 256 $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 D | video.min.js | 12 …===window.confirm||e===window.prompt)},Qt=Object.prototype.toString;ei.httpHandler=function(n,r){r… function
|