User Authentication in Microsoft bot framework

I am creating a bot system for banking operations, and I need to authenticate the user before providing him any details. If the bot is idle for 5 minutes, I need the user to re-authenticate before proceeding.

I am using Microsoft Bot and LUIS framework to develop BOT. Can someone help me with this problem?

+3
source share
2 answers

Directly authenticating the user through the chat window is not recommended, and in such cases you will need to use magic codes for authentication. Consider using a third template there , which is safe enough.

+1
source

You must use a signin card to guarantee user authentication and you know the user. You must avoid to ask the user to enter their credentials in the chat. During downtime, you can use the middleware component to intercept all messages from the user and view the last time he sent a message to the bot.

0
source

Source: https://habr.com/ru/post/1686234/


All Articles