From 347aee10fd0fbaa078472516443bce0cf1a3b3c4 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Tue, 27 Jan 2026 06:25:33 +0100 Subject: [PATCH] Refactor: replace appId with clientId in authentication client creation --- bin/auth-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/auth-test.js b/bin/auth-test.js index 4cc0ba9..93b1fce 100755 --- a/bin/auth-test.js +++ b/bin/auth-test.js @@ -10,7 +10,7 @@ if (config.clientSecret) { // Create the client const credential = new ClientSecretCredential( config.tenantId, - config.appId, + config.clientId, config.clientSecret, );