2015-04-05 21:35:49 +05:30
|
|
|
<?php
|
|
|
|
$I = new ApiTester($scenario);
|
|
|
|
$I->wantTo('get an access token using the client credentials grant');
|
|
|
|
$I->sendPOST(
|
2015-04-05 22:48:09 +05:30
|
|
|
'client_credentials.php/access_token',
|
2015-04-05 21:35:49 +05:30
|
|
|
[
|
|
|
|
'grant_type' => 'client_credentials',
|
|
|
|
'client_id' => 'myawesomeapp',
|
|
|
|
'client_secret' => 'abc123',
|
|
|
|
'scope' => 'basic'
|
|
|
|
]
|
|
|
|
);
|
|
|
|
$I->canSeeResponseCodeIs(200);
|
|
|
|
$I->canSeeResponseIsJson();
|
|
|
|
$I->seeResponseJsonMatchesJsonPath('$.token_type');
|
|
|
|
$I->seeResponseJsonMatchesJsonPath('$.expires_in');
|
|
|
|
$I->seeResponseJsonMatchesJsonPath('$.access_token');
|