Home
last modified time | relevance | path

Searched refs:idToken (Results 1 – 25 of 25) sorted by relevance

/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
H A DIdentitytoolkitRelyingpartyDeleteAccountRequest.php29 public $idToken; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartyDeleteAccountRequest
52 public function setIdToken($idToken) argument
54 $this->idToken = $idToken;
61 return $this->idToken;
H A DIdentitytoolkitRelyingpartyEmailLinkSigninRequest.php29 public $idToken; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartyEmailLinkSigninRequest
52 public function setIdToken($idToken) argument
54 $this->idToken = $idToken;
61 return $this->idToken;
H A DVerifyCustomTokenResponse.php29 public $idToken; variable in Google\\Service\\IdentityToolkit\\VerifyCustomTokenResponse
60 public function setIdToken($idToken) argument
62 $this->idToken = $idToken;
69 return $this->idToken;
H A DIdentitytoolkitRelyingpartyGetAccountInfoRequest.php34 public $idToken; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartyGetAccountInfoRequest
75 public function setIdToken($idToken) argument
77 $this->idToken = $idToken;
84 return $this->idToken;
H A DEmailLinkSigninResponse.php33 public $idToken; variable in Google\\Service\\IdentityToolkit\\EmailLinkSigninResponse
82 public function setIdToken($idToken) argument
84 $this->idToken = $idToken;
91 return $this->idToken;
H A DIdentitytoolkitRelyingpartyVerifyPhoneNumberRequest.php29 public $idToken; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartyVerifyPhoneNumberRequest
68 public function setIdToken($idToken) argument
70 $this->idToken = $idToken;
77 return $this->idToken;
H A DSignupNewUserResponse.php37 public $idToken; variable in Google\\Service\\IdentityToolkit\\SignupNewUserResponse
96 public function setIdToken($idToken) argument
98 $this->idToken = $idToken;
105 return $this->idToken;
H A DIdentitytoolkitRelyingpartyVerifyPhoneNumberResponse.php29 public $idToken; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartyVerifyPhoneNumberResponse
80 public function setIdToken($idToken) argument
82 $this->idToken = $idToken;
89 return $this->idToken;
H A DIdentitytoolkitRelyingpartyVerifyPasswordRequest.php41 public $idToken; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartyVerifyPasswordRequest
126 public function setIdToken($idToken) argument
128 $this->idToken = $idToken;
135 return $this->idToken;
H A DVerifyPasswordResponse.php37 public $idToken; variable in Google\\Service\\IdentityToolkit\\VerifyPasswordResponse
116 public function setIdToken($idToken) argument
118 $this->idToken = $idToken;
125 return $this->idToken;
H A DIdentitytoolkitRelyingpartyVerifyAssertionRequest.php33 public $idToken; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartyVerifyAssertionRequest
106 public function setIdToken($idToken) argument
108 $this->idToken = $idToken;
115 return $this->idToken;
H A DSetAccountInfoResponse.php42 public $idToken; variable in Google\\Service\\IdentityToolkit\\SetAccountInfoResponse
129 public function setIdToken($idToken) argument
131 $this->idToken = $idToken;
138 return $this->idToken;
H A DIdentitytoolkitRelyingpartySignupNewUserRequest.php49 public $idToken; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartySignupNewUserRequest
166 public function setIdToken($idToken) argument
168 $this->idToken = $idToken;
175 return $this->idToken;
H A DRelyingparty.php65 public $idToken; variable in Google\\Service\\IdentityToolkit\\Relyingparty
226 public function setIdToken($idToken) argument
228 $this->idToken = $idToken;
235 return $this->idToken;
H A DIdentitytoolkitRelyingpartySetAccountInfoRequest.php70 public $idToken; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartySetAccountInfoRequest
273 public function setIdToken($idToken) argument
275 $this->idToken = $idToken;
282 return $this->idToken;
H A DVerifyAssertionResponse.php82 public $idToken; variable in Google\\Service\\IdentityToolkit\\VerifyAssertionResponse
379 public function setIdToken($idToken) argument
381 $this->idToken = $idToken;
388 return $this->idToken;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudShell/
H A DAuthorizeEnvironmentRequest.php33 public $idToken; variable in Google\\Service\\CloudShell\\AuthorizeEnvironmentRequest
66 public function setIdToken($idToken) argument
68 $this->idToken = $idToken;
75 return $this->idToken;
/plugin/authgooglesheets/vendor/google/auth/src/
H A DOAuth2.php216 private $idToken; variable in Google\\Auth\\OAuth2
403 $idToken = $this->getIdToken();
404 if (is_null($idToken)) {
1324 return $this->idToken;
1330 * @param string $idToken
1333 public function setIdToken($idToken) argument
1335 $this->idToken = $idToken;
1393 } elseif ($idToken = $this->getIdToken()) {
1395 'id_token' => $idToken,
1445 * @param string $idToken
[all …]
/plugin/oauthcognito/
H A Daction.php25 $idToken = $tokenExtras['id_token'] ?? '';
27 … json_decode(base64_decode(str_replace('_', '/', str_replace('-','+',explode('.', $idToken)[1]))));
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DVerify.php86 * @param string $idToken the ID token in JWT format
90 public function verifyIdToken($idToken, $audience = null) argument
92 if (empty($idToken)) {
103 $args = [$idToken];
/plugin/oauthazure/
H A Daction.php35 $idToken = $tokenExtras['id_token'] ?? '';
38 str_replace('-', '+', explode('.', $idToken)[1]))));
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php563 $idToken = $this->token['id_token'];
564 if (substr_count($idToken, '.') == 2) {
565 $parts = explode('.', $idToken);
793 * @param string|null $idToken The token (id_token) that should be verified.
797 public function verifyIdToken($idToken = null) argument
805 if (null === $idToken) {
812 $idToken = $token['id_token'];
816 $idToken,
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md269 $auth->verify($idToken);
281 $auth->verify($idToken, [
/plugin/diagramsnet/lib/js/onedrive/
H A DOneDriveOrig.js2idToken,this.invokerOptions)}else{this.invokerOptions.endpointHint!==c.default.msa&&this.invokerOp…
H A DOneDrive.js6idToken,this.invokerOptions)}else{this.invokerOptions.endpointHint!==c.default.msa&&this.invokerOp…