ClientCredentialsTest.php in Auth0 Single Sign On 8.2
File
vendor/auth0/auth0-php/tests/API/Authentication/ClientCredentialsTest.php
View source
<?php
namespace Auth0\Tests\API\Authentication;
use Auth0\SDK\API\Authentication;
use Auth0\Tests\API\ApiTests;
class ClientCredentialsTest extends ApiTests {
public function testOauthToken() {
$env = self::getEnv();
$api = new Authentication($env['DOMAIN'], $env['APP_CLIENT_ID'], $env['APP_CLIENT_SECRET']);
$token = $api
->client_credentials([
'audience' => 'https://' . $env['DOMAIN'] . '/api/v2/',
]);
$this
->assertArrayHasKey('access_token', $token);
$this
->assertArrayHasKey('token_type', $token);
$this
->assertEquals('bearer', strtolower($token['token_type']));
}
}