Tab app
4 TopicsGet tab app in a meeting - graph api
Hello, We are developing a tab app that can be used as an in-meeting app in side panel. We would need an api that we could query for information about the tab app in the meeting. Something similar to this api (Get tab in chat):https://learn.microsoft.com/en-us/graph/api/chat-get-tabs?view=graph-rest-1.0&tabs=http We can use "Get tab in chat api" for apps in meeting as well, but we cannot retrieve information about tab app in meeting when chat is turned off for given meeting. My question is - are there any future plans to include such meeting apis in the Graph api? Or is there any other way how to get this piece of information? (other than the teams-js SDK - we need to query the data in backend)997Views1like2CommentsLogin Prompt when requesting 3rd public API
I have custom Tab app. I am able to get the Teams context. I've also implemented SSO, so all mgt components are working fine. I have a custom ASP.NET Core WebApi (v6). It does NOT require authentication. I've decorated the controller method with [AllowAnnonymous]. I've tested the endpoint in browsers and Postmost. All good. Back in my custom Teams Tab app, I make a request to aforementioned API endpoint. It looks like this: https://localhost:44332/Test As soon as I make the request, I get a popup to login.microsoft.com. Why? What am I missing? Thank you, Tolga1.3KViews0likes3CommentsHow to proactively start conversation about tab by bot or app?
I have a tab created by bot in one channel, now I would need the bot to start the conversation in the tab programmatically either by graph API or bot framework API. I could not find any documentation regarding the same. Any help is highly appreciated!700Views0likes1CommentTeams Meeting Extension - Side Panel App - How to get attendees emails list
Hi Community, We are developing a Microsoft Teams meeting extension. In order to embedded details related to our system info, we need to get the emails list of attendees of the specific meeting. Tried many ways including graph API but it couldn't identify the meeting ID returning from the teams SDK microsoftTeams.getContext((context)=>{ const meetingID =context.meetingId; }) This returned a meeting id which a format ofMCMxOTptZWV0aW5nX01UbG1Zams0WW1ZdFpESXdaUzAwWmpFeUxUbGhaVGd0TW1Ga01XVTVPV05sTnpGaUB0aHJlYWQudjIjMA== but it does not identify by graph API Also, we tried microsoftTeams.meeting.getMeetingDetails((context)=>{ console.log(context) }) this method returnserrorCode: 1000, message: "App doesn't have sufficient permission to use this API" Is there any simple way to get a meeting attendees list from teams meeting optimized tab apps? or is this feature not yet released to third-party developers?Solved4.4KViews1like8Comments