Forum Widgets
Latest Discussions
enable Accessibility Tree on macOS in the new Teams (work or school)
hello! so i build apps for macOS that use the AX Tree exposed by other apps. in the old Teams, i was able to expose the AX Tree by sending a call to Teams (seehttps://www.electronjs.org/docs/latest/tutorial/accessibility#macosfor more info). it doesn't work anymore in the new Teams. there's another flag that can be sent to apps, but it doesn't work either. the new Teams doesn't expose its AX Tree to my calls. but i **KNOW** it is possible to expose it, because i've found at least one third party app that is able to do so. so, my question, what needs to be done to the new Teams so that i can have access to the AX Tree with my own apps? thank you!godboutJan 13, 2025Copper Contributor925Views1like9CommentsError Adding Icon to Viva Connections Teams App
When attempting to add my organizations logo to the Viva Connections application, through the Teams admin portal, I receive an error that states: "Warning We can't display the image of this private app. To see the image, you must get a license." My organization has an E3 license, I am able to link our SharePoint Home Site to the application and was able to change the name/integrate it into Teams. The only issue I am having now is changing the logo.Bwilson945Jan 10, 2025Copper Contributor844Views1like1CommentAdaptive Card Blank in handphone Android and iOS, sometimes, and previously worked fine
Hi, I created Power Automate to send Adaptive Cards to Microsoft Teams. Previously it was running normally, the cards were sent perfectly to both laptops and Android and iOS phones, but a few days later, about a week, the cards sent to the team's phones were increasingly blank, even now every time there is a card, it is definitely blank if it is on a phone. this code for the Adaptive Card { "type": "AdaptiveCard", "body": [ { "type": "TextBlock", "size": "Medium", "weight": "Bolder", "text": "Ticket No. @{body('Update_Reject')?['TicketNo']} Has Been Reject!" }, { "type": "TextBlock", "text": "Hi, @{body('Update_Reject')?['Author']?['DisplayName']}. Ticket No. @{body('Update_Reject')?['TicketNo']} has been reject by @{body('Update_Reject')?['Approval']?['Value']}.", "wrap": true }, { "type": "FactSet", "facts": [ { "title": "Ticket No.", "value": ": @{body('Update_Reject')?['TicketNo']}" }, { "title": "Publish Date", "value": ": @{body('Update_Reject')?['PublishDate']}" }, { "title": "Requester", "value": ": @{body('Update_Reject')?['Author']?['DisplayName']}" }, { "title": "Request Type", "value": ": @{body('Update_Reject')?['RequestType']?['Value']}" }, { "title": "Work Instruction", "value": ": @{outputs('Get_RO')?['body/WorkInstruction']}" }, { "title": "Reject By", "value": ": @{body('Update_Reject')?['Approval']?['Value']}" }, { "title": "Status", "value": ": Reject" }, { "title": "Reason", "value": ": @{body('Update_Reject')?['Notes']}" } ] }, { "type": "ActionSet", "actions": [ { "type": "Action.OpenUrl", "title": "Script Link", "id": "ScriptButtonUrl", "url": "@{body('Update_Reject')?['Script']}", "style": "positive" }, { "type": "Action.OpenUrl", "title": "Test Result Link", "id": "TestButtonUrl", "url": "@{body('Update_Reject')?['TestResultLink']}", "style": "positive" }, { "type": "Action.OpenUrl", "title": "Pentest Link", "id": "PentestButtonUrl", "url": "@{body('Update_Reject')?['PentestLink']}", "style": "positive" } ] }, ], "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.3" } what's wrong, can you help me? thanks.tezzafazarJan 10, 2025Copper Contributor204Views3likes5CommentsOutlook is not showing image for new posts in MS Teams Channel
Issue: Microsoft Power Automate | We have a power automate flow, where it is triggered when a new post is added to the channel in MS Teams and the action is to send email. We found that if the post contains photo, the photo is not seen in the email or there is an Error. Flow Setup: The environment is MS Personal Productivity Testing Results: 1. This is when a new post is added in MS Teams channel: 2. Result in Outlook email: Question: The post always contain text + photos, however text is seen on the outlook but the photos are seen with the below error How we can fix this issue? is it outlook problem? What Action should we add to our flow to fix this problem?1.7KViews0likes5CommentsMs Graph API: Set "Busy - In a call" does not cause new calls to be rejected
Hi everybody, Although I set the Presence State to “Busy – InACall”, new incoming calls are not rejected. And yes, Busy on Busy (Busy Options) is activated. So if I have a real Teams call a new incoming call is rejected. Any idea why setting“Busy – InACall” via Graph API doesnot cause new calls to be rejected? Regards GerdrelkniwJan 10, 2025Brass Contributor192Views0likes6CommentsResource-specific consent not showing up in permission grants
I've got an Azure app registration, and a Teams application with a manifest that specifies that ID in the webApplicationInfo. I also have the following permissions specified in the manifest: I then hit "Publish" within https://dev.teams.microsoft.com/, and publish the app into my organisation, which I am fairly sure is a Microsoft 365 Developer tenant. Once I've approved the app and added it to Teams, I see the following permissions: I have a backend for my Teams app, and I'd like it to be able to create channels. I do this by using my app's ID and secret, and hitting the OAuth2 token endpoint for the developer tenant, with a scope of "https://graph.microsoft.com/.default". This gives me back a JWT token, that when I decode it using jwt.ms, has Group.Selected in the roles array. This all seems correct so far! When I then use that token to create a channel, I get the following error: Missing role permissions on the request. API requires one of 'Channel.Create, Teamwork.Migrate.All, Group.ReadWrite.All, Directory.ReadWrite.All, Channel.Create.Group'. Roles on the request 'TeamsAppInstallation.ReadWriteSelfForTeam.All, Group.Selected, TeamsAppInstallation.ReadForTeam.All'. Resource specific consent grants on the request ''. I would expect to be gettingChannel.Create.Group as a resource-specific consent grant. How can I find out why this isn't happening? I've been following this guide but when I use the Graph Explorer to callhttps://graph.microsoft.com/beta/teams/{team-id}/permissionGrantsfor the team I installed the app into, I get back an empty array. Hopefully someone can spot what I'm doing wrong.samincJan 10, 2025Copper Contributor648Views1like5CommentsImages in Adaptive Cards in New Teams Client not showing
Hello Community, I've encountered an issue with Teams Webhook Connector where images in Adaptive Cards are not displaying correctly in the New Teams Client, although they work as expected in the classic version. Our clients have reported that while messages are visible, the images fail to appear. This problem does not occur in the classic Teams client or when viewed in a browser, which I presume is utilizing the classic client as well. To clarify, I'm using the latest Adaptive Cards version (v1.5) compatible with Teams, and this issue is consistent across both Windows and Apple versions of the New Teams Client. Unfortunately, there seems to be no information available about this compatibility issue in the Adaptive Cards documentation or designer tool. Below is a simple Adaptive Card JSON that illustrates the problem: { "type": "AdaptiveCard", "body": [ { "type": "TextBlock", "size": "Medium", "weight": "Bolder", "text": "This is a headline" }, { "type": "Image", "url": "https://img.cdn-pictorem.com/uploads/collection/D/DN4DFF8JRC/900_Nature-Art_colorful--paintings.jpg", "width": "300px" } ], "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.5" } For visual reference, here is how the card renders in both clients: Classic Teams Client: New Teams Client: I have not found a workaround yet and would greatly appreciate guidance on how to resolve this issue. Any suggestions or updates regarding the new client's support for Adaptive Cards would be very helpful. Thank you. Best regardsemilSociuuJan 09, 2025Copper Contributor13KViews1like41Commentscall details with devce info and participant join,leave time
i am working on teams integration project when i run grap api it does not show data for device and participant timing details graph api for extacting data for call including { "call_id": "004998be-da70-40f6-999a-3c84484c98b1", "start_date_time": "2024-12-17T11:53:14.9897859Z", "end_date_time": "2024-12-17T12:16:55.6045446Z", "participants": [ { "participant_name": "Surbhi Yadav", "join_time": "Unknown", "leave_time": "Unknown" },AkashsinghaiprusJan 07, 2025Copper Contributor81Views0likes6CommentsDeeplink Navigation Issue in Published MS Teams Custom App on Mobile Devices (iOS & Android)
Description: We are experiencing an issue with navigation in our published MS Teams custom app. The app has a Tab with personal scope and a Bot. The problem arises for a few users (mostly on iOS devices) when they navigate to the Tab from the chat section of the Bot by clicking on a button that deeplinks to the Tab. Expected Behavior: The button click should trigger the deeplink and open the designated Tab and the specific page within the Tab in MS Teams app. Actual Behavior: iOS devices display an error message "Link not Supported. You can't open this link on the mobile app. Please open it on the desktop or web app." Android devices successfully open the Tab, but navigate to the default home page instead of the intended page within the Tab. Error Message: Details: The navigation works perfectly on the Desktop App and Web Browser. Sample Deeplink Used: letobj={ "params":paramsObj, "subdomain":subdomain, "pageRoute":"home" }; letsubEntityId={ "subEntityId":obj }; varencodedWebUrl=""; varencodedContext=encodeURI(JSON.stringify(subEntityId)); lettabUrl="https://teams.microsoft.com/l/entity/"+manifestObj.id+"/agentTabId?webUrl=" +encodedWebUrl+"&label=entityLabel&context="+encodedContext; cardObj={ ... { title:'OpeninTab', type:'Action.OpenUrl', url:tabUrl, } ... } Request: We need assistance in resolving this issue to ensure smooth navigation for all users, especially on iOS devices. Additionally, we need guidance on ensuring that Android devices navigate to the correct page within the Tab rather than the default home page. Thank you for your support.santhosh_sjJan 06, 2025Copper Contributor378Views0likes4CommentsGraph API: Meeting Attendance Details Organizer and Participant Join/Leave Times
Hi Teams Developer Community, I hope this message finds you well. I am currently working on fetching meeting attendance details, specifically the join and leave times of the organizer and participants, using the Microsoft Graph API. Could you please provide guidance on the following points: Endpoints to Use: What are the exact Graph API endpoints for obtaining meeting attendance details, including the join and leave times of all participants? Required Permissions: What permissions are necessary to access these attendance details? Are there any specific configurations needed in Azure AD? JSON Response Format: Below is the JSON format I am aiming to achieve. Could you confirm if this is correct and provide any additional fields or structures that might be useful? { "value": [ { "emailAddress": "abc", "totalAttendanceInSeconds":, "role": "Organizer", "identity": { "id": "", "displayName": ", "tenantId": }, "attendanceIntervals": [ { "joinDateTime": "2021-10-05T04:38:27.6027225Z", "leaveDateTime": "2021-10-05T04:43:49.7702391Z", "durationInSeconds": 322 } ] }, { "emailAddress": "abc", "totalAttendanceInSeconds": 314, "role": "Presenter", "identity": { "id": "57caaef9-5ed0-48d5-8862-e5abfa71b3e9", "displayName": "Lisa Adkins", "tenantId": null }, "attendanceIntervals": [ { "joinDateTime": "2021-10-04T23:13:43.3776519Z", "leaveDateTime": "2021-10-04T23:18:57.5639338Z", "durationInSeconds": 314 } ] } ] }AkashsinghaiprusJan 05, 2025Copper Contributor46Views0likes3Comments
Resources
Tags
- microsoft teams1,667 Topics
- developer1,293 Topics
- Meetings226 Topics
- Chat212 Topics
- Administrator134 Topics
- Settings101 Topics
- Calling100 Topics
- files64 Topics
- teams53 Topics
- devices52 Topics