Skip to content

Commit edfd584

Browse files
committed
Update web app settings
1 parent 2ef7f91 commit edfd584

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
-55.1 KB
Loading

articles/communication-services/quickstarts/chat/quickstart-botframework-integration.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ For this quickstart we will use the [Echo Bot](https://github.com/microsoft/BotB
6363

6464
#### Create a web app to hold the bot app
6565

66-
Azure Bot Service typically expects the Bot Application Web App Controller to expose an endpoint in the form `/api/messages`. The endpoint handles all messages that are sent to the bot.
67-
6866
To create the web app, either use the Azure CLI to [create an Azure App Service resource](/azure/bot-service/provision-app-service?tabs=singletenant%2Cexistingplan) or create the app in the Azure portal.
6967

7068
To create a bot web app by using the Azure portal:
@@ -85,6 +83,8 @@ To create a bot web app by using the Azure portal:
8583

8684
#### Create a messaging endpoint for the bot
8785

86+
Azure Bot Service typically expects the Bot Application Web App Controller to expose an endpoint in the form `/api/messages`. The endpoint handles all messages that are sent to the bot.
87+
8888
Next, in the bot resource, create a web app messaging endpoint:
8989

9090
1. In the Azure portal, go to your Azure Bot resource. In the resource menu, select **Configuration**.
@@ -112,12 +112,14 @@ The final step to create a bot is to deploy the web app. For this quickstart, us
112112

113113
```json
114114
{
115+
"MicrosoftAppType": "",
115116
"MicrosoftAppId": "<App-registration-ID>",
116-
"MicrosoftAppPassword": "<App-password>"
117+
"MicrosoftAppPassword": "<App-password>",
118+
"MicrosoftAppTenantId": ""
117119
}
118120
```
119121

120-
Next, use Visual Studio for C# bots to deploy the bot.
122+
Next, use Visual Studio or VScode for C# bots to deploy the bot.
121123

122124
You also can use a Command Prompt window to [deploy an Azure bot](/azure/bot-service/provision-and-publish-a-bot?tabs=userassigned%2Ccsharp).
123125

0 commit comments

Comments
 (0)