Skip to content

Commit

Permalink
Fixed incorrect env variables (#4838)
Browse files Browse the repository at this point in the history
  • Loading branch information
robbiew authored and Tom Laird-McConnell committed Aug 8, 2018
1 parent 30ecba9 commit 9db1764
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Node/examples/basics-oauth/app.js
Expand Up @@ -19,8 +19,8 @@ var inMemoryStorage = new builder.MemoryBotStorage();

// Create chat connector for communicating with the Bot Framework Service
var connector = new builder.ChatConnector({
appId: process.env.MICROSOFT_APP_ID,
appPassword: process.env.MICROSOFT_APP_PASSWORD
appId: process.env.MicrosoftAppId,
appPassword: process.env.MicrosoftAppPassword
});

var connectionName = process.env.CONNECTION_NAME;
Expand Down

0 comments on commit 9db1764

Please sign in to comment.