I test my bot at Azure Portal(Bot Channels Registration/BOT MANAGEMENT/Test in Web Chat). The second ConversationUpdate event will follow at the back of user first input, like below,
Azure's Webchat Step like below,
- click Startover
- bot get first ConversationUpdate, memberAdd bot
- user input text
- bot get user input text
- bot get second ConversationUpdate, memberAdd user
But emulator working fine, 2 ConversationUpdate events and wait for user input. botframework-emulator Step like below,
- click Start new Conversation
- bot get first ConversationUpdate, memberAdd bot
- bot get second ConversationUpdate, memberAdd user
- user input text
- bot get user input text
I want send welcome message(include user's name, like hi, rainmaker welcome ...) to user when second ConversationUpdate was coming. The welcome message will send after user input in azure webchat. How can i fix this problem?
Thanks.