You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/communication-services/quickstarts/chat/quickstart-botframework-integration.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,8 +63,6 @@ For this quickstart we will use the [Echo Bot](https://github.com/microsoft/BotB
63
63
64
64
#### Create a web app to hold the bot app
65
65
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
-
68
66
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.
69
67
70
68
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:
85
83
86
84
#### Create a messaging endpoint for the bot
87
85
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
+
88
88
Next, in the bot resource, create a web app messaging endpoint:
89
89
90
90
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
112
112
113
113
```json
114
114
{
115
+
"MicrosoftAppType": "",
115
116
"MicrosoftAppId": "<App-registration-ID>",
116
-
"MicrosoftAppPassword": "<App-password>"
117
+
"MicrosoftAppPassword": "<App-password>",
118
+
"MicrosoftAppTenantId": ""
117
119
}
118
120
```
119
121
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.
121
123
122
124
You also can use a Command Prompt window to [deploy an Azure bot](/azure/bot-service/provision-and-publish-a-bot?tabs=userassigned%2Ccsharp).
0 commit comments