mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-01 16:33:07 +05:30
18 lines
509 B
PHP
18 lines
509 B
PHP
<?php
|
|
$I = new ApiTester($scenario);
|
|
$I->wantTo('get an access token using the client credentials grant, invalid client id');
|
|
$I->sendPOST(
|
|
'client_credentials.php/access_token',
|
|
[
|
|
'grant_type' => 'client_credentials',
|
|
'client_id' => 'myawesomeapp-wrong',
|
|
'client_secret' => 'foobar'
|
|
]
|
|
);
|
|
$I->canSeeResponseCodeIs(401);
|
|
$I->canSeeResponseIsJson();
|
|
$I->seeResponseContainsJson([
|
|
'error' => 'invalid_client',
|
|
'message' => 'Client authentication failed.'
|
|
]);
|