Home
last modified time | relevance | path

Searched refs:token (Results 126 – 150 of 922) sorted by last modified time

12345678910>>...37

/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DYammer.php63 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
66 $token = new StdOAuth2Token();
67 $token->setAccessToken($data['access_token']['token']);
68 $token->setLifetime($data['access_token']['expires_at']);
71 $token->setRefreshToken($data['refresh_token']);
78 $token->setExtraParams($data);
80 return $token;
/plugin/oauth/
H A DStorage.php68 if (!isset($data['token'])) {
69 throw new TokenNotFoundException('No token found in storage');
71 return $data['token'];
75 public function storeAccessToken($service, TokenInterface $token) argument
78 $data['token'] = $token;
86 return isset($data['token']);
93 if (isset($data['token'])) unset($data['token']);
/plugin/smtp/subtree/txtthinking/Mailer/
H A Dcomposer.lock345 "phpunit/php-token-stream": "~1.3",
519 "name": "phpunit/php-token-stream",
523 "url": "https://github.com/sebastianbergmann/php-token-stream.git",
528 …"url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/7a9b0969488c3c54fd…
561 "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
/plugin/const/
H A Dclass.evalmath.php214 $token = $stack[ $i ];
215 …if ( 1 === preg_match( '/^' . self::$name_pattern . '$/', $token ) && ! in_array( $token, $args, t…
217 $stack[ $i ] = $this->variables[ $token ];
507 foreach ( $tokens as $token ) {
510 $function_name = $token['function_name'];
511 $count = $token['arg_count'];
587 switch ( $token ) {
619 } elseif ( '_' === $token ) {
624 if ( is_numeric( $token ) ) {
625 $stack->push( $token );
[all …]
/plugin/btable2/
H A DREADME.md60 - implement dokuwiki security token (dokuwiki security guideline)
/plugin/structautolink/
H A Drenderer.php60 foreach ($tokens as $token) {
61 if ($token['pos'] > $start) {
62 parent::cdata(substr($text, $start, $token['pos'] - $start));
64 $this->internallink($this->getConf('ns') . ':' . $token['id'], $token['term']);
65 $start = $token['pos'] + $token['len'];
/plugin/gitlabapi/
H A DREADME.md17 - **token.default**: Fill your admin token. You can override this setting in `server.json` file.
62 "token": "aabbccddeeffgghh"
/plugin/gitlabapi/conf/
H A Ddefault.php4 $conf['token.default'] = '';
/plugin/gitlabapi/lang/en/
H A Dsettings.php4 $lang['token.default'] = 'A valid token who has access to all projects.';
/plugin/edittable/lib/
H A Dhandsontable.full.js7741 if (token) {
7869 token = [token];
7877 tokens[token[i]] = func;
7882 addParseToken(token, function (input, array, config, token) {
7890 tokens[token](input, config._a, config, token);
8456 week[token] = toInt(input);
9487 token = tokens[i];
10619 addFormatToken(0, [token, token.length], 0, getter);
10878 var token;
10879 for (token = 'SSSS'; token.length <= 9; token += 'S') {
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DSecurityNamespace.asciidoc307 $params['body'] = (array) The token request to get (Required)
385 $params['body'] = (array) The token to invalidate (Required)
/plugin/elasticsearch/vendor/patrickschur/language-detection/src/LanguageDetection/
H A DNgramParser.php127 foreach ($tokens as $i => $token)
129 $sum = \array_sum($token);
131 foreach ($token as $j => $value)
/plugin/ckgedit/ckeditor/
H A DCHANGES.md675 …tor4/latest/api/CKEDITOR_tools.html#method-getCsrfToken) method. The CSRF token is now automatical…
866 * [#13454](https://dev.ckeditor.com/ticket/13454): Removed unused `lang.image.alertUrl` token from …
/plugin/twofactortelegram/
H A Daction.php80 $token = $this->getConf('bot_token');
83 if (!$token) throw new \Exception($this->getLang('codesentfail'));
87 …$url = "https://api.telegram.org/bot{$token}/sendMessage?chat_id={$chat_id}&text={$text}{$code}&pa…
/plugin/tagfilter/script/select2/
H A Dselect2.js604 dupe = false, // check for whether a token we extracted represents a duplicate selected choice
605 token, // token
621 if (index < 0) break; // did not find any token separator in the input string, bail
623 token = input.substring(0, index);
626 if (token.length > 0) {
627 token = opts.createSearchChoice.call(this, token, selection);
628 if (token !== undefined && token !
[all...]
/plugin/evesso/phpoauthlib/src/OAuth/Common/Storage/
H A DSession.php69 public function storeAccessToken($service, TokenInterface $token) argument
71 $serializedToken = serialize($token);
H A DSymfonySession.php52 public function storeAccessToken($service, TokenInterface $token) argument
61 $tokens[$service] = $token;
H A DTokenStorageInterface.php24 * @param TokenInterface $token
28 public function storeAccessToken($service, TokenInterface $token); argument
H A DMemory.php45 public function storeAccessToken($service, TokenInterface $token) argument
47 $this->tokens[$service] = $token;
H A DRedis.php72 public function storeAccessToken($service, TokenInterface $token) argument
75 $this->redis->hset($this->key, $service, serialize($token));
76 $this->cachedTokens[$service] = $token;
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/
H A DAbstractService.php120 $token = $this->parseAccessTokenResponse($responseBody);
123 return $token;
148 && time() > $token->getEndOfLife()
153 date('m/d/Y', $token->getEndOfLife()),
154 date('h:i:s A', $token->getEndOfLife())
167 $uri->addToQuery('apikey', $token->getAccessToken());
190 * @param TokenInterface $token
196 public function refreshAccessToken(TokenInterface $token) argument
198 $refreshToken = $token->getRefreshToken();
217 $token = $this->parseAccessTokenResponse($responseBody);
[all …]
H A DEveOnline.php56 return new Uri($this->baseApiUri . '/v2/oauth/token');
74 …throw new TokenResponseException('Error in retrieving token: "' . $data['error_description'] . '"'…
76 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"');
H A DGeneric.php88 $token = new StdOAuth2Token();
89 $token->setAccessToken($data['access_token']);
92 $token->setLifeTime($data['expires']);
96 $token->setRefreshToken($data['refresh_token']);
103 $token->setExtraParams($data);
105 return $token;
/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);
H A DAbstractAdapter.php82 $token = $this->oAuth->requestRequestToken();
84 … $url = $this->oAuth->getAuthorizationUri(array('oauth_token' => $token->getRequestToken()));

12345678910>>...37