Reputation: 810
When I create a Bot Channels Registration service in Azure, and then create a Teams app that will use that, how is the Bot Channel Registration being informed what apps it should allow to go through?
Upvotes: 1
Views: 166
Reputation: 810
It does not authenticate the MS Teams app. Any app can point to any Bot Channels Registration or Azure Bot, it's up to the bot backend to validate the source of the message if desired. Like using one of the links in the comments of the previous answer.
Upvotes: 1
Reputation: 926
The registration app ID and password added in bot configuration file. Allows the bot to be authenticated to access protected resources.
The Bot Connector service natively uses HTTPS to exchange messages between a bot and channels (users). the Bot Framework SDK automates basic bot-to-channel authentication for you.
Please have a look at this documentation - link and other modules present in it.
Upvotes: 0