Issue
Upon clicking "Show Video" button from bot. MSTeams does not render the embedded iFrame. Result is an empty modal that pops up.
Goal
Build out a feature displaying an embedded video mid dialog utilizing BotFramework (Python).
In production will be using Microsoft Stream. To keep it simple, just using publicly accessible YouTube video.
Partial solution
I was able to resolve the above issue in an internal environment. When migrating over to an external environment, ran into the same issue while the previous solution did not work.
Trials
I'm going to relay what I attempted just incase this helps someone else as it was not a clear path for me.
- Explore built in video card that is "hero card like" from BotFramework. 06.using-cards
This does not work in msteams and as it is "not supported."
- Display a video in msteams with "task modules" 54.teams-task-module
Tried running off ngrok - did not work.
Added ngrok domain to validDomains array in teams manifest json - did not work.
Try the bot deployed with domain added to manifest - did not work.
https
Looking into the docs, msteams require https.
Mind you that msteams desktop is just an electron variation so the web version is essentially the same.
Debugging
Looked at the network logs from msteams as a web app. Checking the "invoke" response when looking at the traffic logs, the "url" value starts with "https".
Hitting the endpoint to view the static html file hosted in Azure App Service. The result was to an unsecured http.
The Solve
Enable https only traffic in the App Service Network configurations.
The modal now renders the iFrame of the YouTube video!
Present issue
Now in client's environment and the original issue presented itself again although enabling https did not resolve it this time around. I've checked the App Service configuration and MSTeams App Manifest's validDomains. Once I click the button to show video, it does not display any traffic past "invoke". I feel it's something about not being able to access the html page hosted in the App Service once again.