Forum Discussion
adminuser01auto-ubyon
Apr 20, 2023Copper Contributor
[Bot Builder 4.0 SDK] Teams Task module not showing up HTML page
I am trying to load an HTML page using the task module, as suggested under https://learn.microsoft.com/en-us/microsoftteams/platform/task-modules-and-cards/what-are-task-modules#task-module-samples ...
- Apr 22, 2023
The issue is resolved, the issue was happening as we were using HTTP module. (const http = require('http')
Which did have methods like res.status and res.send, so the response was not being sent from function processActivityunder under botFrameworkAdapter.ts.
After we used express issue was resolved.
adminuser01auto-ubyon
Apr 22, 2023Copper Contributor
The issue is resolved, the issue was happening as we were using HTTP module. (const http = require('http')
Which did have methods like res.status and res.send, so the response was not being sent from function processActivityunder under botFrameworkAdapter.ts.
After we used express issue was resolved.