Recent DiscussionsNewest TopicsMost LikesSolutionsOpen Task Module in BotFramework-WebChat Can we open the task module inBotFramework-WebChat? Kindly provide any references if available A base app which can onboard multiple teams app I want to develop a Microsoft Teams app that allows onboarding of other Teams apps through an "Add App" action button. Each onboarded app would also have its own chatbot. Is this possible? If so, what’s the best approach, and are there any resources you can recommend? Localization of App Hi, I tried to update the manifest.json file to support localization. { "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.16/MicrosoftTeams.schema.json", "manifestVersion": "1.16", "version": "1.0.0", "id": "3fb32313-adb1-4a04-8c35-f3ad7c0f0188", "packageName": "com.microsoft.teams.extension", "localizationInfo": { "defaultLanguageTag": "fr-ca", "additionalLanguages": [ { "languageTag": "fr-ca", "file": "fr-ca.json" } ] }, "developer": { "name": "Teams App, Inc.", "websiteUrl": "https://localhost:53000", "privacyUrl": "https://localhost:53000/index.html#/privacy", "termsOfUseUrl": "https://localhost:53000/index.html#/termsofuse" }, "icons": { "color": "color.png", "outline": "outline.png" }, "name": { "short": "Localization", "full": "Localization App" }, "description": { "short": "Localization App for Microsoft Teams", "full": "This sample app provides a very simple localization app. You can extend this to add more content and capabilities." }, "accentColor": "#FFFFFF", "bots": [], "composeExtensions": [], "configurableTabs": [], "staticTabs": [ { "entityId": "index", "name": "Personal Tab", "contentUrl": "https://localhost:53000/index.html#/tab", "websiteUrl": "https://localhost:53000/index.html#/tab", "scopes": [ "personal" ] } ], "permissions": [ "identity", "messageTeamMembers" ], "validDomains": [ "localhost:53000" ], "webApplicationInfo": { "id": "254c5630-0ff0-4ec5-a7e8-824f0762f7e6", "resource": "api://localhost:53000/254c5630-0ff0-4ec5-a7e8-824f0762f7e6" } } But when I am adding the app to the teams, the initial window content is not showing the default language set. As in this case I set fr-ca as a default language. NOTE: I am running this app locally Endpoint while typing Does Microsoft Teams have a specific endpoint that allows developers to receive each keystroke or each character typed in the input field in real-time? Pass adaptive card meta data to handleTeamsTaskModuleFetch method. Hi, I want to know how to pass metadata of adaptive card to handleTeamsTaskModuleFetch function, so I can have this data in the dialog. metaData is huge data in my case. Not getting the bot name When we switched to the new Teams app. We are not getting the bot name in chat. But in classic teams, we can see the bot name as mentioned in the app. Getting error in bot Hi, we are getting this error from the chat bot of teams. We get this on response to a text. And this is not consistent. Sometime it works otherwise it throws this error [onTurnError] unhandled error RestError: Authorization has been denied for this request. { "name": "RestError", "statusCode": 401, "request": { "streamResponseStatusCodes": {}, "url": "https://smba.trafficmanager.net/amer/v3/conversations/a%3A1ubHd4zo21nNipqM4UBie7nFRK6psR9ge20mGt6CcYIoUkmvpcMAdpIzSuv6IS0gfwtsM4xPPU-oSHiC-uQJenTL1FqkqdIb5KOg1WLGdw1rGFYoo1E2I_iGtJOr0l7Ol/activities/1711034217606", "method": "POST", "headers": { "_headersMap": { "content-type": "application/json; charset=utf-8", "x-ms-conversation-id": "REDACTED", "accept": "*/*", "user-agent": "Microsoft-BotFramework/3.1 botframework-connector/4.22.1 core-http/3.0.4 Node/v18.19.1 OS/(x64-Windows_NT-10.0.19045)", "authorization": "REDACTED" } }, "withCredentials": false, "timeout": 0, "requestId": "2cb6fcd0-23dc-4af5-8c8e-56502eafa1f8" }, "details": { "message": "Authorization has been denied for this request." }, "message": "Authorization has been denied for this request." Send details from adaptive card to task module I am opening a dialog from the adaptive card action button with the help of the task module in the team's bot. I also need to pass on information from the adaptive card to the task module dialog. How can I send that? Kindly help me on this authentication Our application has two components. The tab and the bot. We did the authentication to our backend service in the tab part. So we can make API calls to our backend service from the tab component. But when we move to bot, we can't make the API calls from there. As we don't have the session ID and other authentication details. Can someone tell what would be a better approach to send the authentication details from tab to the bot side, so we can make API calls from bot env. as well. Teams Tab application Is it Okay to use react modal in teams tab application?