From da0b7b29b15f7db4cae037cd314221b45887d2fd Mon Sep 17 00:00:00 2001 From: Kyle Delaney Date: Mon, 14 Jun 2021 15:01:57 -0700 Subject: [PATCH] Fix MicrosoftAppID typo (#3319) --- samples/javascript_nodejs/07.using-adaptive-cards/index.js | 2 +- samples/javascript_nodejs/15.handling-attachments/index.js | 2 +- samples/typescript_nodejs/00.empty-bot/src/index.ts | 2 +- samples/typescript_nodejs/03.welcome-users/src/index.ts | 2 +- samples/typescript_nodejs/13.core-bot/src/index.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/samples/javascript_nodejs/07.using-adaptive-cards/index.js b/samples/javascript_nodejs/07.using-adaptive-cards/index.js index 45485357f6..efe8b791cf 100644 --- a/samples/javascript_nodejs/07.using-adaptive-cards/index.js +++ b/samples/javascript_nodejs/07.using-adaptive-cards/index.js @@ -17,7 +17,7 @@ const { AdaptiveCardsBot } = require('./bots/adaptiveCardsBot'); // Create adapter. See https://aka.ms/about-bot-adapter to learn more about adapters. const adapter = new BotFrameworkAdapter({ - appId: process.env.MicrosoftAppID, + appId: process.env.MicrosoftAppId, appPassword: process.env.MicrosoftAppPassword }); diff --git a/samples/javascript_nodejs/15.handling-attachments/index.js b/samples/javascript_nodejs/15.handling-attachments/index.js index 6b8bfb1c60..82e8b2b287 100644 --- a/samples/javascript_nodejs/15.handling-attachments/index.js +++ b/samples/javascript_nodejs/15.handling-attachments/index.js @@ -17,7 +17,7 @@ const { AttachmentsBot } = require('./bots/attachmentsBot'); // Create adapter. See https://aka.ms/about-bot-adapter to learn more about adapters. const adapter = new BotFrameworkAdapter({ - appId: process.env.MicrosoftAppID, + appId: process.env.MicrosoftAppId, appPassword: process.env.MicrosoftAppPassword }); diff --git a/samples/typescript_nodejs/00.empty-bot/src/index.ts b/samples/typescript_nodejs/00.empty-bot/src/index.ts index 40980e380d..49f478edfd 100644 --- a/samples/typescript_nodejs/00.empty-bot/src/index.ts +++ b/samples/typescript_nodejs/00.empty-bot/src/index.ts @@ -19,7 +19,7 @@ server.listen(process.env.port || process.env.PORT || 3978, () => { // Create adapter. // See https://aka.ms/about-bot-adapter to learn more about adapters. const adapter = new BotFrameworkAdapter({ - appId: process.env.MicrosoftAppID, + appId: process.env.MicrosoftAppId, appPassword: process.env.MicrosoftAppPassword }); diff --git a/samples/typescript_nodejs/03.welcome-users/src/index.ts b/samples/typescript_nodejs/03.welcome-users/src/index.ts index dc399bef88..5b749beadc 100644 --- a/samples/typescript_nodejs/03.welcome-users/src/index.ts +++ b/samples/typescript_nodejs/03.welcome-users/src/index.ts @@ -19,7 +19,7 @@ server.listen(process.env.port || process.env.PORT || 3978, () => { // Create adapter. // See https://aka.ms/about-bot-adapter to learn more about adapters. const adapter = new BotFrameworkAdapter({ - appId: process.env.MicrosoftAppID, + appId: process.env.MicrosoftAppId, appPassword: process.env.MicrosoftAppPassword }); diff --git a/samples/typescript_nodejs/13.core-bot/src/index.ts b/samples/typescript_nodejs/13.core-bot/src/index.ts index 7247b5942e..7130bf78e6 100644 --- a/samples/typescript_nodejs/13.core-bot/src/index.ts +++ b/samples/typescript_nodejs/13.core-bot/src/index.ts @@ -29,7 +29,7 @@ import { FlightBookingRecognizer } from './dialogs/flightBookingRecognizer'; // Create adapter. // See https://aka.ms/about-bot-adapter to learn more about adapters. const adapter = new BotFrameworkAdapter({ - appId: process.env.MicrosoftAppID, + appId: process.env.MicrosoftAppId, appPassword: process.env.MicrosoftAppPassword });