From 9e533ec6f2c69432538566fffc019d4622bf70b1 Mon Sep 17 00:00:00 2001 From: Sadrinho27 Date: Thu, 11 Sep 2025 10:40:43 +0200 Subject: [PATCH] Add log for the token (test) --- src/controllers/idnot.controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/controllers/idnot.controller.ts b/src/controllers/idnot.controller.ts index a6611e5..44d7b98 100644 --- a/src/controllers/idnot.controller.ts +++ b/src/controllers/idnot.controller.ts @@ -92,6 +92,7 @@ export class IdNotController { try { // Exchange code for tokens const tokens = await IdNotService.exchangeCodeForTokens(code); + console.log(tokens); const jwt = tokens.id_token; if (!jwt) {