tabs
3 TopicsMS Teams Tab sending chats?
I noticed some tabs have a chat tab that corresponds to a chat in the messages tab on the teams client. I'm wondering how you can do that all in one because the docs seem to specify messaging capabilities is a chatbot feature. I'm looking at this and it isn't clear that my tabs app can send messages as well. https://learn.microsoft.com/en-us/microsoftteams/platform/resources/bot-v3/bots-with-tabs843Views0likes4CommentsBest practices for multi-page app
I am working on a Teams app for AppSource. It will have multiple screens: user view, user edit, admin edit. I could build a single page app with dynamic components, but I am concerned that it will impact performance. Is there a better way? I have considered creating multiple tabs, but it would mean installing 3 tabs, including some - such a the admin tab - not relevant to all users.Solved1.8KViews0likes3CommentsmicrosoftTeams.authentication.authenticate does not close popup, neither success nor failure message
I am using microsoftTeams.authentication.authenticate way of authentication, with popup 1. everything is fine and popup appears with sepcified URL 2. authentication is completed and it returns to my redirect URL with url parameters after I am calling microsoftTeams.authentication.notifySuccess('message'); but popup remains opened and doing nothing. am I need to do something to manually close popup or it should close automatically? popup function export const requestConsent = (res) => { return new Promise((resolve, reject) => { microsoftTeams.authentication.authenticate({ url: res, width: 600, height: 535, successCallback: function (result) { resolve(result) }, failureCallback: function (reason) { if (typeof reason === 'string') { reject(reason) }; } }); }); } callng function requestConsent(resLocal) .then((result) => { dispatch(setToken(result)); console.log(result); }) .catch((error) => { dispatch(setSnackbarMessage(error)); console.log(error); }) .finally(resFinal => console.log(resFinal)); and finally calling microsoftTeams.authentication.notifySuccess microsoftTeams.initializate() is called as well, in project root file.2KViews0likes1Comment