Home
last modified time | relevance | path

Searched refs:token (Results 101 – 125 of 922) sorted by relevance

12345678910>>...37

/plugin/gtime/gtlib/asn1/tsp/
H A DTSPTimeStampResp.php43 private $token; variable in TSPTimeStampResp
81 $token = new CMSContentInfo();
82 $token->decode($object->getObjectAt(1));
84 $this->token = $token;
122 return $this->token;
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D1.1.js1token:"delimiter.curly",open:"{",close:"}"},{token:"delimiter.parenthesis",open:"(",close:")"},{to…
H A D42.42.js.map1token: 'delimiter.parenthesis' },\n { open: '`(', close: ')', token: 'delimiter.parenthesis…
H A D32.32.js1token:"string",next:"@codeblock"}],[/^\s*```\s*((?:\w|[\/\-#])+).*$/,{token:"string",next:"@codebl…
H A D13.13.js1token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"},{open:"(",close:")",token:"…
H A D22.22.js.map1token: '@rematch', switchTo: '@handlebarsInSimpleState.root' }],\n [/<!DOCTYPE/, 'metat…
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DQuickBooks.php74 throw new TokenResponseException('Error in retrieving token.');
90 $message = 'Error in retrieving token: "' . $data['error'] . '"';
94 $token = new StdOAuth1Token();
96 $token->setRequestToken($data['oauth_token']);
97 $token->setRequestTokenSecret($data['oauth_token_secret']);
98 $token->setAccessToken($data['oauth_token']);
99 $token->setAccessTokenSecret($data['oauth_token_secret']);
101 $token->setEndOfLife(StdOAuth1Token::EOL_NEVER_EXPIRES);
103 $token->setExtraParams($data);
105 return $token;
[all...]
H A DFlickr.php52 throw new TokenResponseException('Error in retrieving token.');
63 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
66 $token = new StdOAuth1Token();
67 $token->setRequestToken($data['oauth_token']);
68 $token->setRequestTokenSecret($data['oauth_token_secret']);
69 $token->setAccessToken($data['oauth_token']);
70 $token->setAccessTokenSecret($data['oauth_token_secret']);
71 $token->setEndOfLife(StdOAuth1Token::EOL_NEVER_EXPIRES);
73 $token->setExtraParams($data);
75 return $token;
[all...]
/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/AdExchangeBuyer/
H A DPretargetingConfigPlacements.php22 public $token; variable in Google\\Service\\AdExchangeBuyer\\PretargetingConfigPlacements
25 public function setToken($token) argument
27 $this->token = $token;
31 return $this->token;
H A DPretargetingConfigExcludedPlacements.php22 public $token; variable in Google\\Service\\AdExchangeBuyer\\PretargetingConfigExcludedPlacements
25 public function setToken($token) argument
27 $this->token = $token;
31 return $this->token;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSecurityToken/
H A DGoogleIdentityStsV1IntrospectTokenRequest.php25 public $token; variable in Google\\Service\\CloudSecurityToken\\GoogleIdentityStsV1IntrospectTokenRequest
34 public function setToken($token) argument
36 $this->token = $token;
43 return $this->token;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidPublisher/Resource/
H A DPurchasesProducts.php40 * @param string $token The token provided to the user's device when the inapp
45 …public function acknowledge($packageName, $productId, $token, ProductPurchasesAcknowledgeRequest $… argument
47 …$params = ['packageName' => $packageName, 'productId' => $productId, 'token' => $token, 'postBody'…
58 * @param string $token The token provided to the user's device when the inapp
63 public function get($packageName, $productId, $token, $optParams = []) argument
65 $params = ['packageName' => $packageName, 'productId' => $productId, 'token' => $token];
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DYahoo.php46 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
49 $token = new StdOAuth2Token();
50 $token->setAccessToken($data['access_token']);
51 $token->setLifetime($data['expires_in']);
54 $token->setRefreshToken($data['refresh_token']);
61 $token->setExtraParams($data);
63 return $token;
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A DREADME.md95 %token brace_ {
96 %token _brace }
98 %token bracket_ \[
99 %token _bracket \]
101 %token colon :
102 %token comma ,
127 * `<token>` and `::token::` to declare a token;
141 %token quote "|'
142 %token handle \w+
204 > > token(number, 1)
[all …]
/plugin/oauth/
H A DAdapter.php105 * Once a user has been authenticated, the current token storage needs to be made permanent
129 * Refresh a possibly outdated access token
131 * Does nothing when the current token is still good to use
144 // no token to refresh
148 $token = $oauth->getStorage()->retrieveAccessToken($oauth->service());
150 $token->getEndOfLife() < 0 ||
151 $token->getEndOfLife() - time() > 3600
153 // token is still good
157 $refreshToken = $token->getRefreshToken();
158 $token
[all...]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/Token/
H A DClassTest.php29 foreach ($ts as $token) {
30 if ($token instanceof PHP_Token_CLASS) {
31 $this->class = $token;
34 if ($token instanceof PHP_Token_FUNCTION) {
35 $this->function = $token;
69 foreach ($ts as $token) {
70 if ($token instanceof PHP_Token_CLASS) {
71 $this->assertFalse($token->hasInterfaces());
/plugin/evesso/classes/
H A DoAuthStorage.php62 $token = $this->getLoadToken($service);
63 if(!isset($token)) {
67 return $token;
72 * @param TokenInterface $token
76 public function storeAccessToken($service, TokenInterface $token) { argument
77 $_SESSION[DOKU_COOKIE]['evesso-storage']['token'] = serialize($token);
86 $token = $this->getLoadToken($service);
87 return isset($token);
/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]));
/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/Firebaseappcheck/
H A DGoogleFirebaseAppcheckV1betaAppCheckToken.php29 public $token; variable in Google\\Service\\Firebaseappcheck\\GoogleFirebaseAppcheckV1betaAppCheckToken
52 public function setToken($token) argument
54 $this->token = $token;
61 return $this->token;
H A DGoogleFirebaseAppcheckV1betaDebugToken.php33 public $token; variable in Google\\Service\\Firebaseappcheck\\GoogleFirebaseAppcheckV1betaDebugToken
66 public function setToken($token) argument
68 $this->token = $token;
75 return $this->token;
/plugin/authgoogle/google/contrib/
H A DGoogle_AndroidpublisherService.php32 …* @param string $token The token provided to the user's device when the inapp product was purchase…
36 public function get($packageName, $productId, $token, $optParams = array()) { argument
37 $params = array('packageName' => $packageName, 'productId' => $productId, 'token' => $token);
64 …* @param string $token The token provided to the user's device when the subscription was purchased.
67 public function cancel($packageName, $subscriptionId, $token, $optParams = array()) { argument
68 …ams = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
79 …* @param string $token The token provided to the user's device when the subscription was purchased.
83 public function get($packageName, $subscriptionId, $token, $optParams = array()) { argument
84 …ams = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/
H A DChangeLog.md3 All notable changes to `sebastianbergmann/php-token-stream` are documented in this file using the […
7 * Fixed [#69](https://github.com/sebastianbergmann/php-token-stream/issues/69): `PHP_Token_USE_FUNC…
13 * Fixed [#68](https://github.com/sebastianbergmann/php-token-stream/issues/68): Method with name `e…
17 [2.0.2]: https://github.com/sebastianbergmann/php-token-stream/compare/2.0.1...2.0.2
18 [2.0.1]: https://github.com/sebastianbergmann/php-token-stream/compare/2.0.0...2.0.1
19 [2.0.0]: https://github.com/sebastianbergmann/php-token-stream/compare/1.4.11...2.0.0
/plugin/gtime/gtlib/asn1/gt/
H A DGTCertTokenResponse.php41 private $token; variable in GTCertTokenResponse
85 $token = new GTCertToken();
86 $token->decode($tag->getObjectAs(ASN1_TAG_SEQUENCE));
88 $this->token = $token;
150 return $this->token;

12345678910>>...37