Forum Discussion
diegoSpace
Jan 31, 2020Brass Contributor
Receive an Http Request in my Tab page
I have a Teams bot running (node js), and a Teams tab displaying my info I would like to update tab web data when I receive a message in my bot. Can I send an HTTP request to my running HTML page...
subhasish-MSFT
Feb 04, 2020Former Employee
Creating a webhook for your tab might not be possible inside teams. Rather on receiving a message in bot, you can call your service and update the data provided by user. If you are storing cache of data then you could update the cache with user data. So next time when you render the html tab it should display the updated data.
Hope I am able to answer your query.
diegoSpace
Feb 06, 2020Brass Contributor
subhasish-MSFT Ok, thanks for your reply, I will check it