Jiří

Results 2 comments of Jiří

There are a few differences from the basic procedure: 1. "client_credentials" must be supplemented with the "scope" parameter: ` $scope = "$baseGraphUri/.default"; $token = self::$provider->getAccessToken('client_credentials', ['scope' => $scope]); ` 2....

` $tenant = array_key_exists('tid', $idTokenClaims) ? $idTokenClaims['tid'] : $this->tenant; $version = array_key_exists('ver', $idTokenClaims) ? $idTokenClaims['ver'] : $this->defaultEndPointVersion;` If "$idTokenClaims" is null, which is a valid value, the array_key_exists function will...