From 74146344952d4c9c7d37e66c44251325ae44ab4c Mon Sep 17 00:00:00 2001 From: Bastiaan Date: Wed, 31 Jan 2024 11:49:04 +0100 Subject: [PATCH] pass client_id in token_request --- .../src/app/auth/services/management-portal-auth.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/authorizer-app/src/app/auth/services/management-portal-auth.service.ts b/authorizer-app/src/app/auth/services/management-portal-auth.service.ts index 84d36003..b765d04e 100644 --- a/authorizer-app/src/app/auth/services/management-portal-auth.service.ts +++ b/authorizer-app/src/app/auth/services/management-portal-auth.service.ts @@ -91,6 +91,7 @@ export class ManagementPortalAuthService extends AuthService { .set('grant_type', environment.authorizationGrantType) .set('redirect_uri', window.location.href.split('?')[0]) .set('code', authCode) + .set('client_id', environment.appClientId) } getTokenRequestHeaders() {