Receive an Http Request in my Tab page

Brass Contributor

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? I mean, having something like a webkook listening requests in my tab page

 

Thanks,

Diego

2 Replies

@diegoSpace 

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.

@subhasish-MSFT Ok, thanks for your reply, I will check it