Searched refs:targetAudience (Results 1 – 4 of 4) sorted by relevance
/plugin/authgooglesheets/vendor/google/auth/src/ |
H A D | ApplicationDefaultCredentials.php | 205 * @param string $targetAudience The audience for the ID token. 214 $targetAudience, argument 219 $creds = self::getIdTokenCredentials($targetAudience, $httpHandler, $cacheConfig, $cache); 232 * @param string $targetAudience The audience for the ID token. 241 $targetAudience, argument 246 $creds = self::getIdTokenCredentials($targetAudience, $httpHandler, $cacheConfig, $cache); 256 * @param string $targetAudience The audience for the ID token. 266 $targetAudience, argument 297 $creds = new ServiceAccountCredentials(null, $jsonKey, null, $targetAudience); 299 $creds = new GCECredentials(null, null, $targetAudience);
|
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/ |
H A D | GCECredentials.php | 157 private $targetAudience; variable in Google\\Auth\\Credentials\\GCECredentials 173 * @param string $targetAudience [optional] The audience for the ID token. 182 $targetAudience = null, argument 188 if ($scope && $targetAudience) { 203 } elseif ($targetAudience) { 205 $tokenUri = $tokenUri . '?audience=' . $targetAudience; 206 $this->targetAudience = $targetAudience;
|
H A D | ServiceAccountCredentials.php | 111 * @param string $targetAudience The audience for the ID token. 117 $targetAudience = null argument 141 if ($scope && $targetAudience) { 147 if ($targetAudience) { 148 $additionalClaims = ['target_audience' => $targetAudience];
|
/plugin/authgooglesheets/vendor/google/auth/ |
H A D | README.md | 143 // $targetAudience = 'IAP_CLIENT_ID.apps.googleusercontent.com'; 144 // $targetAudience = 'https://service-1234-uc.a.run.app'; 145 $targetAudience = 'YOUR_ID_TOKEN_AUDIENCE'; 148 $middleware = ApplicationDefaultCredentials::getIdTokenMiddleware($targetAudience); 236 // $targetAudience = 'IAP_CLIENT_ID.apps.googleusercontent.com'; 237 $targetAudience = 'YOUR_ID_TOKEN_AUDIENCE'; 240 $middleware = ApplicationDefaultCredentials::getProxyIdTokenMiddleware($targetAudience);
|