teams app
37 TopicsMicrosoft Graph - List apps in chat - 404 UnknownError
In Microsoft Graph, I would like to list all Teams apps associated to an onlineMeeting (to its chat actually). According to List apps in chat - Microsoft Graph v1.0 | Microsoft Learn, this is supported with the following request : GET /chats/{chat-id}/installedApps There is a note saying that if the chat is associated with an onlineMeeting instance, then, effectively, the teamsApps installed in the meeting will be listed. That should work. However, I'm getting a 404 with UnknownError as the error.code on my end. The right permission (TeamsAppInstallation.ReadWriteForChat) is granted (Chat.ReadWrite is granted as well). Testing from Graph Explorer from now. Please note that the following is working to get chat messages with the same chat-id : GET /chats/{chat-id}/messages or the following to get chat members : GET /chats/{chat-id}/members I've tried the endpoint POST /chats/{chat-id}/installedApps to add an app to the chat as well but I'm getting the same kind of 404 (documented on Add app to chat - Microsoft Graph v1.0 | Microsoft Learn). Any advice? Thanks286Views0likes4CommentsFirewall whitelist rule/s for Teams custom app bot
I have a custom app that implements a bot in Teams, the bot url points to a server hosted within my local network. All works fine when my firewall is turned off. So my question is - what ip address needs to be whitelisted to allow the teams bot in?303Views0likes2CommentsCalls from Microsoft Teams App compared to Teams web app
Hello Bit of a tricky one but I believe it maybe a network issue. I have a situation where the client calls a business contact, goes through to an IVR, press's the required selection and after getting put through to the agent all audio drops from the call. Strange aspect is, if you make the call with the Teams app, it works, make it with the Teams web app and it fails (I have tested this by calling from two numbers that go over completely separate carriers). I have captured network logs and can see a continuous stream of UDP so I know the call is not failing, it seems the audio process is being dropped when being routed through the webb app. Has anyone had this before or would know the difference route/process a teams app phone call makes to a teams web app? I believe it is probably a network issue on the B Party side, but as with most calls, proving that is half the work. I am going to do my own research but not come across clear yet, if anyone has anything to add that would assist in this I would be grateful (as well as if I come up with the answer I will put this down as it is an inconvenience for the client).132Views0likes0CommentsTwo questions about sign-out of Teams app
We have each PC in each conference room that is used for Teams meetings. Each conference room PC has its own teams account which is kept as logged in to Teams app so that anyone can start and join to web conference without laptop PC. This works fine. However, Teams app sometimes automatically signs out. So we have two questions. 1. Sign-out action is logged in somewhere? Can we find it in admin center or other place? We would like to know whether someone operated Teams app and signed it out manually or not. 2. If anyone did not operate Teams app and sign it out, what setting causes Teams app automatically sign out? Thank you.178Views0likes2CommentsCreating virtual Azure environment for teams toolkit VS code for teams toolkit.
Hi everyone, I am working on a project to create a teams bot app for my institute. I am using Teams Toolkit for VS code, and I have MS 365 app upload permission allocated. I was trying to create " https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/bot-conversation-sso-quickstart/js" using Teams Toolkit. However, after debugging the app with option of 'Debug in Edge' or 'Debug in Chrome' I faced issue with devtunnel, that the devtunnel is unable to create tunnel service use 'Test Tool' Instead. I communicated same issue with my team and came to know that firewall is blocking any tunneling service in our tenant. Then, my IT Admin suggested to create a Shared Virtualized Environment in Azure in which I should develop and deploy app for testing and production. Now I am quite confused about how to do this, because teams toolkit for VS code is installed on VS code of my local device and it's debugging will happen locally, how I should create Shared Virtualized Environment in Azure for creating, debugging and deploying Teams Bot App. Your answers are highly appreciated, this is very important project for my institute.46Views0likes0CommentsTeams Tabs App - Finding the current team/site
I am currently developing a teams app that will be added to a few different teams. We are using C# / .cshtml / Razor and the app consists of a few RazorComponents which performs different Graph operations on a SharePoint site. Currently we are using a hard-coded siteId pointing to our Team-site used for testing, but now we need to find this siteId dynamically - to access the right site, depending on which team you opened the app through. We found the MicrosoftTeams.GetTeamsContextAsync() which gives us a TeamsContext object - however the Teams field is null. Is there a good way to do this that we just haven't found? Or does anyone know of a not-so-good way that might work? Or am I coming at this from the completely wrong direction?Solved779Views0likes2CommentsApp installed in Teams native is not showing up in iOS Devices
https://appsource.microsoft.com/en-gb/product/office/WA104381880?exp=ubp8&tab=Overview installed in Teams native is not showing up in iOS Devices . Tons of our users are not able to see nor access it anymore on their iOS phones. And it's been a blocker for iOS users. We tried Reinstalling/ Resetting the Teams App but it didn't help.The issue still exits. What might be the reason for that? iOS Version: iOS 16.3 Teams Version:1.2KViews0likes1CommentActivity Feed Notification Not getting data assigned to subEntityId in teams mobile client - Tab App
I'm using activityFeedNotification graph api to send push notification to the users of our teams tab app from backend using nodejs. The notification is sending successfully in both teams desktop and mobile client but we're not getting the data assigned to subEntityId in mobile client(In desktop client and browser we're getting it). We are encoding the data(object) and assigning it to the subEntityId in context object from our nodejs application. Then in teams client, we get that data from teams context using microsoft teams sdk and redirect user to the respective page in our application based on whatever data we get in subEntityId In desktop, deeplinking is working perfectly but in android client, we're not getting any data in subEntityId. It is just opening the homepage of our tab app but I need to redirect user to specific page based whatever data is assigned to subEntityId. Below I've provided how we're encoding the data and assigning it to subEntityId. Server Side Code: const context = encodeURIComponent( JSON.stringify({ "subEntityId": { "type": "PROGRAM_PROFILE", "program_id": "12345", uid: uuidv4(), } }) ); const body = { topic: { source: 'text', value: notificationTopic, webUrl: `https://teams.microsoft.com/l/entity/${TEAMS_APP_ID}/index?context=${context}`, }, activityType: 'commonNotification', previewText: { content: notificationSubtitle, }, templateParameters: [ { name: 'title', value: notificationTitle, }, ], }; const url = `https://graph.microsoft.com/v1.0/users/${userId}/teamwork/sendActivityNotification`; await axios.post(url, body)); Client Side Code: const context = await app.getContext(); console.log(context?.page?.subPageId); // getting undefined Any kind of help is appreciated!794Views0likes0CommentsTeams App with static tabs for SharePoint Communication Site
Hi All, I am using App Studio in Teams to create a Team App for my SharePoint Communication Site. I found out that there is no navigation/header/footer elements and I found out a solution which is adding ?app=portals in the Content URL. It works fine for me in mobile/desktop/web Teams at first. Recently, the navigation menu in mobile Teams is no response. When you click on the navigation menu ("三") is should expand and collapse like the below pic. And now there is no response when I click the "三". It just only happens on mobile Teams. For web/desktop teams, it is functioning normally. Anyone has faced this situation too? Any solutions for fixing this case?1.4KViews0likes2Comments