add client_secret on return

This commit is contained in:
aynsix
2020-03-03 12:23:19 +03:00
parent d387a12049
commit 495c9ec296

View File

@@ -246,6 +246,7 @@ class UserApplicationsCommand extends Command
$account->getUser()->getId(), $account->getUser()->getId(),
$application->getName(), $application->getName(),
$application->getClientId(), $application->getClientId(),
$application->getClientSecret(),
$application->getRedirectUri(), $application->getRedirectUri(),
($token) ? $token->getOauthToken() : '-', ($token) ? $token->getOauthToken() : '-',
$application->isPasswordGranted() ? "true": "false" $application->isPasswordGranted() ? "true": "false"
@@ -253,7 +254,7 @@ class UserApplicationsCommand extends Command
} }
$applicationTable = $this->getHelperSet()->get('table'); $applicationTable = $this->getHelperSet()->get('table');
$headers = ['app_id', 'user_id', 'name', 'client_id', 'callback_url', 'generated token', 'grant_password status']; $headers = ['app_id', 'user_id', 'name', 'client_id', 'client_secret', 'callback_url', 'generated token', 'grant_password status'];
if ($jsonformat ) { if ($jsonformat ) {
foreach ($applicationList as $appList) { foreach ($applicationList as $appList) {
@@ -312,7 +313,7 @@ class UserApplicationsCommand extends Command
$application->isPasswordGranted() ? "true": "false" $application->isPasswordGranted() ? "true": "false"
]; ];
$headers = ['client secret', 'client ID', 'Authorize endpoint url', 'Access endpoint', 'generated token', 'grant_password status']; $headers = ['client_secret', 'client_id', 'Authorize endpoint url', 'Access endpoint', 'generated token', 'grant_password status'];
if ($jsonformat ) { if ($jsonformat ) {
$createdAppInfo = array_combine($headers, $applicationCreated); $createdAppInfo = array_combine($headers, $applicationCreated);
echo json_encode($createdAppInfo); echo json_encode($createdAppInfo);