Home
last modified time | relevance | path

Searched refs:token (Results 51 – 75 of 922) sorted by path

12345678910>>...37

/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessVerifications/
H A DVerifyLocationRequest.php134 public function setToken(VerificationToken $token) argument
136 $this->token = $token;
143 return $this->token;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RecaptchaEnterprise/
H A DGoogleCloudRecaptchaenterpriseV1Event.php37 public $token; variable in Google\\Service\\RecaptchaEnterprise\\GoogleCloudRecaptchaenterpriseV1Event
92 public function setToken($token) argument
94 $this->token = $token;
101 return $this->token;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Reports/
H A DChannel.php57 public $token; variable in Google\\Service\\Reports\\Channel
178 public function setToken($token) argument
180 $this->token = $token;
187 return $this->token;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DSiteVerification.php89 'path' => 'token',
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SiteVerification/
H A DSiteVerificationWebResourceGettokenResponse.php29 public $token; variable in Google\\Service\\SiteVerification\\SiteVerificationWebResourceGettokenResponse
48 public function setToken($token) argument
50 $this->token = $token;
57 return $this->token;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/
H A DLocalizedString.php33 public $token; variable in Google\\Service\\Spanner\\LocalizedString
66 public function setToken($token) argument
68 $this->token = $token;
75 return $this->token;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Storage/
H A DChannel.php57 public $token; variable in Google\\Service\\Storage\\Channel
178 public function setToken($token) argument
180 $this->token = $token;
187 return $this->token;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/YouTubeReporting/
H A DGdataMedia.php122 public $token; variable in Google\\Service\\YouTubeReporting\\GdataMedia
533 public function setToken($token) argument
535 $this->token = $token;
542 return $this->token;
/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md181 1. In the script handling the redirect URI, exchange the authorization code for an access token:
185 $token = $client->fetchAccessTokenWithAuthCode($_GET['code']);
334 * directly with an access token, API key, or (recommended) using
371 …ount#overview), it may be useful to perform some action when a new access token is granted. To do …
376 $logger->debug(sprintf('new access token received at cache key %s', $cacheKey));
461 Run the PHPUnit tests with PHPUnit. You can configure an API key and token in BaseTest.php to run a…
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DRevoke.php51 * @param string|array $token The token (access token or a refresh token) that should be revoked.
54 public function revokeToken($token) argument
56 if (is_array($token)) {
57 if (isset($token['refresh_token'])) {
58 $token = $token['refresh_token'];
60 $token = $token['access_token'];
64 $body = Psr7\Utils::streamFor(http_build_query(array('token' => $token)));
/plugin/authgooglesheets/vendor/google/apiclient/src/AuthHandler/
H A DGuzzle5AuthHandler.php68 public function attachToken(ClientInterface $http, array $token, array $scopes) argument
70 $tokenFunc = function ($scopes) use ($token) {
71 return $token['access_token'];
H A DGuzzle6AuthHandler.php71 public function attachToken(ClientInterface $http, array $token, array $scopes) argument
73 $tokenFunc = function ($scopes) use ($token) {
74 return $token['access_token'];
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php77 private $token; variable in Google\\Client
450 $token['refresh_token']
504 * @param string|array $token
509 if (is_string($token)) {
511 $token = $json;
514 $token = array(
515 'access_token' => $token,
519 if ($token == null) {
525 $this->token = $token;
530 return $this->token;
[all …]
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md129 Proxy (IAP), you will need to fetch an ID token to access your application. For
141 // Provide the ID token audience. This can be a Client ID associated with an IAP application,
220 you can include the ID token in a `Proxy-Authorization: Bearer`
221 header instead. If a valid ID token is found in a `Proxy-Authorization` header,
235 // Provide the ID token audience. This can be a Client ID associated with an IAP application
263 the `Google\Auth\AccessToken` class to verify the ID token:
273 (IAP), you can verify the ID token coming from the IAP server by pointing to the
/plugin/authgooglesheets/vendor/google/auth/src/
H A DAccessToken.php289 …* @param string|array<mixed> $token The token (access token or a refresh token) that should be rev…
293 public function revoke($token, array $options = []) argument
295 if (is_array($token)) {
296 if (isset($token['refresh_token'])) {
297 $token = $token['refresh_token'];
299 $token = $token['access_token'];
303 $body = Utils::streamFor(http_build_query(['token' => $token]));
H A DFetchAuthTokenCache.php221 if (!$cached && $token = $this->fetcher->getLastReceivedToken()) {
222 $this->saveAuthTokenInCache($token, $authUri);
H A DOAuth2.php1387 if ($token = $this->getAccessToken()) {
1390 'access_token' => $token,
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
H A DAppIdentityCredentials.php136 $token = AppIdentityService::getAccessToken($this->scope);
137 $this->lastReceivedToken = $token;
139 return $token;
H A DGCECredentials.php464 * @param string $accessToken The access token to use to sign the blob. If
466 * token. **Defaults to** `null`.
H A DIAMCredentials.php36 private $token; variable in Google\\Auth\\Credentials\\IAMCredentials
40 * @param string $token the IAM token
42 public function __construct($selector, $token) argument
49 if (!is_string($token)) {
56 $this->token = $token;
87 $metadata_copy[self::TOKEN_KEY] = $this->token;
H A DInsecureCredentials.php32 private $token = [ variable in Google\\Auth\\Credentials\\InsecureCredentials
44 return $this->token;
66 return $this->token;
/plugin/authgooglesheets/vendor/google/auth/src/Middleware/
H A DScopedAccessTokenMiddleware.php160 $token = call_user_func($this->tokenFunc, $this->scopes);
161 $this->setCachedValue($cacheKey, $token);
163 return $token;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md39 * No `guzzle.phar` was created in 6.4.0 due expired API token. This release will fix that
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md363 * Fixed regression in HipChat requiring a new token to be created
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DFleepHookHandler.php37 protected $token; variable in Monolog\\Handler\\FleepHookHandler
45 * @param string $token Webhook token
49 string $token, argument
62 $this->token = $token;
113 $header = "POST " . static::FLEEP_HOOK_URI . $this->token . " HTTP/1.1\r\n";

12345678910>>...37