Forum Widgets
Latest Discussions
Adaptive Card not Displaying On Teams Mobile
Hey everyone, I've been messing with Power Automate to create Adaptive Cards after every day to update the team on how we're doing. It works perfectly on Desktop, however, some text is not visible on Mobile as seen in attached pictures. The first picture is how it displays on mobile, the second is how it displays on desktop. Changing my theme to light still does not show the numbers that should be there. I've attached the adaptive card json at the bottom, any help is appreciated! { "type": "AdaptiveCard", "body": [ { "type": "Container", "items": [ { "type": "TextBlock", "size": "Large", "weight": "Bolder", "text": "DC Data for Last Shipping Day ", "spacing": "Large", "horizontalAlignment": "Center", "color": "Good" }, { "type": "TextBlock", "text": "Great work! We shipped @{add(add(int(variables('Output')[0]['Orders Shipped']), int(variables('Output')[1]['Orders Shipped'])), int(variables('Output')[2]['Orders Shipped']))} orders.", "wrap": true, "size": "Medium", "horizontalAlignment": "Center" } ] }, { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "stretch", "items": [ { "type": "TextBlock", "wrap": true, "text": "Wisconsin:\n\n", "size": "Large", "weight": "Bolder" }, { "type": "FactSet", "facts": [ { "title": "Orders Shipped:", "value": "@{variables('Output')[0]['Orders Shipped']}" }, { "title": "Orders Left to Ship:", "value": "@{variables('Output')[0]['Orders Left to Ship']}" }, { "title": "Overdue Orders:", "value": "@{variables('Output')[0]['Overdue Orders ']}" } ] } ] }, { "type": "Column", "width": "stretch", "items": [ { "type": "TextBlock", "text": "Nevada:", "wrap": true, "size": "Large", "weight": "Bolder" }, { "type": "FactSet", "facts": [ { "title": "Orders Shipped:", "value": "@{variables('Output')[1]['Orders Shipped']}", "color": "Accent" }, { "title": "Orders Left to Ship:", "value": "@{variables('Output')[1]['Orders Left to Ship']}" }, { "title": "Overdue Orders:", "value": "@{variables('Output')[1]['Overdue Orders ']}" } ] } ] }, { "type": "Column", "width": "stretch", "items": [ { "type": "TextBlock", "text": "Mississippi:", "wrap": true, "size": "Large", "weight": "Bolder" }, { "type": "FactSet", "facts": [ { "title": "Orders Shipped:", "value": "@{variables('Output')[2]['Orders Shipped']}" }, { "title": "Orders Left to Ship:", "value": "@{variables('Output')[2]['Orders Left to Ship']}" }, { "title": "Overdue Orders:", "value": "@{variables('Output')[2]['Overdue Orders ']}" } ] } ] } ] }, { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "stretch", "items": [ { "type": "TextBlock", "text": "TOTAL PERCENTAGE", "size": "Large", "color": "Accent", "maxLines": 3, "wrap": true, "horizontalAlignment": "Center" } ], "verticalContentAlignment": "Center" }, { "type": "Column", "width": "stretch", "items": [ { "type": "TextBlock", "wrap": true, "text": " @{body('Format_number')}%", "size": "ExtraLarge", "horizontalAlignment": "Center", "color": "Good" } ], "verticalContentAlignment": "Center" }, { "type": "Column", "width": "stretch", "items": [ { "type": "Image", "url": "imageURL", "horizontalAlignment": "Center", "spacing": "None" } ], "verticalContentAlignment": "Center", "backgroundImage": { "verticalAlignment": "Center", "horizontalAlignment": "Center" }, "horizontalAlignment": "Center" } ] } ], "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.3" }SolvedSigmadelta8Jul 10, 2025Copper Contributor12KViews1like20CommentsInconsistent Tokens per Minute Rate Limits for GPT-4.1 Across Subscriptions
We have seeing that the TPM rate limits for the GPT-4.1 model vary across different subscriptions, even when the subscriptions are under the same pricing tier and region. Azure OpenAI is created with Standard price tier and in West Europe location. Please clarify the policy behind rate limit for GPT-4.1 in Azure OpenAI.Lakshmi_145Jul 09, 2025Iron Contributor25Views0likes1CommentConsent popup
Hi everyone, I’m reaching out for clarification regarding a popup that intermittently appears when users interact with our notification only bot, specifically when attempting to open a task module. After clicking "Agree" it shows "Enjoy using" and then appeared again. When clicking on Privacy/Terms of use nothing happens, while Permissions lead to opening another popup with endless loading, after closing it consent popup stops appearing for this app. Context: Sideloaded; Only a bot is declared in the manifest; App registration: Registered in Azure as multi-tenant with personal accounts enabled, SSO is not used; Interaction: Task module is triggered via Adaptive Card with Action.Submit, "msteams": { "type": "task/fetch" }; We’ve seen it only a few times in one tenant. It does not appear in most other sessions. Can someone tell if this is a bug or if there are some specific conditions that trigger this popup? Thanks in advance!SolvedDenys-FokinJul 07, 2025Copper Contributor88Views0likes5CommentsUsing Graph API to create a OneNote tab in a Teams Channel
Hello, I'm trying to create a new tab in an existing channel that opens a OneNote notebook using Graph API. According to official documentation (https://learn.microsoft.com/en-us/graph/api/channel-post-tabs?view=graph-rest-1.0&tabs=http), the call should look like this: POST https://graph.microsoft.com/v1.0/teams/{team-id}/channels/{channel-id}/tabs { "displayName": "OneNote", "email address removed for privacy reasons" : "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/0d820ecd-def2-4297-adad-78056cde7c78", "configuration": { "entityId": "<Notebook_id>", "contentUrl": "<OneNote_notebook_url>", "websiteUrl": "<OneNote_notebook_url>" } } It worked smoothly, but since recently, when you open the tab in Teams (desktop or web), it shows an error message stating that "the application can't be reached". In the end, the tab is created but OneNote notebook is not opened. Reading the official documentation here: https://learn.microsoft.com/en-us/graph/teams-configuring-builtin-tabs#onenote-tabs it mentions that when creating OneNote tabs, "configuration is not supported". Does this mean now you can't specify the OneNote notebook to open in the tab using Graph API? Any suggestions or recommendations? Thanks in advance! FerranSolved1.5KViews0likes14CommentsAzure Function Not Sending Response Back to Teams Bot – Integration Issue
Azure Function Called by Teams Bot – Triggered Successfully but No Response in Web Chat We are integrating a Microsoft Teams Bot (C#) with an Azure Function (Python). While the Azure Function gets triggered successfully, we are not receiving any response back in Web Chat or Teams. What We Have Done: Teams Bot (C#) is running locally in Visual Studio. We added code to call the Azure Function using HttpClient: What We Have Done: Bot Framework Bot (C#) is running locally via Visual Studio (on ports 7130/5130). We’ve added this code to call the Azure Function: var httpClient = new HttpClient(); var response = await httpClient.PostAsync( "https://<function-url>/api/Foundarybasic", new StringContent(JsonConvert.SerializeObject(turnContext.Activity), Encoding.UTF8, "application/json") ); Azure Function (Python) is deployed and logs show that it receives the request and processes it correctly: ( I tested this from Power Automate getting Proper Response) @app.route(route="Foundarybasic", auth_level=func.AuthLevel.ANONYMOUS) def Foundarybasic(req: func.HttpRequest) -> func.HttpResponse: logging.info("Function triggered") data = req.get_json() user_text = data.get("text", "No message") reply = { "type": "message", "text": f"Echo: '{user_text}' — Azure Bot integration is working!" } return func.HttpResponse(json.dumps(reply), mimetype="application/json", status_code=200) Problem: Azure Function logs show it receives and processes the request correctly. However, nothing shows up in Web Chat or Teams client. No error messages or failed HTTP codes are observed. We want the Teams Bot to call the Azure Function and relay its response back to the user, like an echo bot Is there a required structure for the response that the Bot Framework expects from an external HTTP call? Does the bot need to manually send the Azure Function's response back using turnContext.SendActivityAsync(...)? Are there any known working patterns or best practices for calling Azure Functions from a Teams Bot? Any help, samples, or suggestions would be greatly appreciated! Thanks!AllabashaShaik1990Jul 02, 2025Copper Contributor45Views0likes1CommentTeams Media Meeting bot POC
I'm trying to build a research poc to test MS solutions ability to carry out user sentiment analysis from live video streams - i.e. from Teams. Full disclosure - I'm very willing and have spent a lot of time on desktop research etc - but im not a developer, so have limited skills or experience here. So any advice very much welcomed! I have seen that there is an MS solution for meeting bots (application-hosted, or service-hosted) that might be able to help me gather the live video from Teams. Does anyone have any experience of these meeting bots - I would like to know more and if suitable, stand one up to assess it. Happy of course to provide more info if that would help, let me know.GLEKAJun 30, 2025Copper Contributor43Views0likes1CommentUrgent: Teams app publishing process blocked - app does not appear in the store after approval
Hello everyone, i am contacting you regarding a problem with the publishing of my Microsoft Teams app that started yesterday and is blocking my development work. Problem description: After developing a new version of my MS Teams app, I can no longer successfully publish it in my organization. The app is uploaded in the Developer Portal, released in the Teams Admin Center, but then does not appear in the Teams App Store under "Built for your org", so I cannot test it. Chronology: I am an admin in my organization and am developing a Teams app Before yesterday, the publishing process went smoothly: Upload in the Developer Portal → Appearance in the App Store → Test Yesterday, a colleague installed the app for testing purposes Since then, I can no longer publish new versions (they do not appear in the App Store) The upload and release in the Admin Center work without an error message However, the app does not appear in the App Store afterwards, neither in the desktop client nor in the web client Attempts have already been made to solve this: Completely restarted Teams client several times App version increased in manifest (to 1.2.0) App deleted and re-uploaded in Developer Portal App deleted and re-released in Teams Admin Center Waited for a delay of several hours Cleared cache (as far as possible on Mac) Test in web client (with the same result) Special observations: In the Mac client, the button "Upload a custom app" is grayed out with the note to contact my IT admin (I am the admin myself) On the Service Health Page, there is an active incident with the ID MO1093370 that affects Microsoft Teams I suspect that the issue is related to the current service degradation, which is described in the health page as "An infrastructure component is not processing requests as efficiently as expected" and explicitly affects Microsoft Teams. Is there a way to fix or work around this issue so that I can continue my development work? Can you confirm whether there is a connection with the current service degradation? Thank you in advance for your help. Best regards MichaelSolvedMRingtunatusJun 25, 2025Copper Contributor115Views0likes4CommentsPowershell for creating a Auto Attendant
Hello I would like to create an Auto Attendant through Powershell. The command is New-CsAutoAttendant Teams keeps asking about the DefaultCallFlow. I would like to hardcode the command like this: New-CsAutoAttendant -Name "xx" -LanguageId "fr-FR" -TimeZoneId "Romance Standard Time" How do I add the DefaultCallFlow and then redirect it to an external number Regards JFM_12Solved59Views0likes4CommentsChange Teams App Domain
I have a multi tenant app available in the Teams App store. I have to change the domain for that app due to Azure CDN Standard from Microsoft (classic) being retired. Instead of a ".azureedge.net" domain I'd like to use my own subdomain going forward. To prevent service disruptions I would like to host the app frontend on two domains simultaniously and then change the domain in a manifest update. However, it seems the App Registration Resource (Application ID URI) needs to contain the domain name for Teams to allow access to the app, otherwise I get the following error message: Get SSO token failed with error: App resource defined in manifest and iframe origin do not match Creating a new app registration would mean every customer would need to grant access again to my app registration. What is the recommended approach to changing domains for a Teams app?ThomasPeJun 24, 2025Copper Contributor48Views0likes3Comments
Resources
Tags
- microsoft teams1,717 Topics
- developer1,338 Topics
- meetings230 Topics
- Chat227 Topics
- Administrator144 Topics
- Settings108 Topics
- Calling104 Topics
- files67 Topics
- teams54 Topics
- devices52 Topics