Uploading New Manifest for Microsoft Teams App gets "no manifest file in your app package" error
Hello! I am currently developing for my app in microsoft teams. When I try to manually upload a manifest file via: https://admin.teams.microsoft.com/ I get the following error: "There's no manifest file in your app package. Check the app package…
Retrieve "configurableProperties" value once set by the admin in an organisation for an app in Teams?
I have an app that is published to the Microsoft Store, which contains the following in its app manifest file, "configurableProperties": [ "name", "smallImageUrl", "largeImageUrl", "shortDescription",…
Teams toolkit for vscode, error on provisioning in the ARM step
While trying to provision an simple command bot teams app via the teams toolkit for vscode, I get the following error: (×) Error: arm/deploy failed. (×) Error: The ARM templates for deployment name: 'Create-resources-for-bot' couldn't be deployed…
Why isn't my Microsoft Teams app localization working?
Hello, i'm trying to localize my copilot message extension plugin using the official documentation but it doesn't seem to work, here's the manifest and the localized json file: Manifest: "$schema":…
Request for Documentation on Error Object in /teams/v3/conversations API
Hello, I'm looking for documentation describing the error object returned by /teams/v3/conversations. When making the following request to retrieve a conversation ID, it returns an error if the target user hasn’t installed the app. I understand this is…
Updated Bot Still Showing Old Version & Connection Issues for Some Users
🔹 Context: Initial Connection Issue (Solved) I recently built a Copilot Studio bot that triggers a Power Automate flow using a service account connection. Initially, users were getting a "Permissions Required" message when interacting with the…
Unable to Post a Message to Teams Channel with Graph API Client + C#
Hi, We are trying to post a message to teams channel, with Channel.SendMessage delegated permissions. And here is the code snippet. var options = new OnBehalfOfCredentialOptions { AuthorityHost = AzureAuthorityHosts.AzurePublicCloud, ``` }; var…
How to extract prompts from Copilot in Microsoft Teams ?
Hello, I hope you are doing well. My goal is to extract prompts from Copilot in Microsoft Teams. Basically the logic that I want is to : Get the last user's prompt and last Copilot response as soon as Copilot replies. Is there a clear way to do…
Export API getAllMessages lastModifiedDateTime is not updated
Hello, When I use Export API ( https://learn.microsoft.com/en-us/microsoftteams/export-teams-content ), say "users/335f3c99-ff13-42b4-99c7-2664e1a03deb/chats/getAllMessages" endpoint, it provides me the the following response: { …
Connecting Microsoft Graph Education API to Power BI
With the deprecation of Insights for leaders in Microsoft SDS and Teams, a need has arisen to connect to the Microsoft Graph Education API for data collection to build a Power BI dashboard. Is there a reliable method for establishing this connection,…
Markdown Text Appears as HTML Tags When Posting to a Teams Bot
Hello, When I send a request to post markdown text to a Teams bot, the HTML tags are displayed as plain text instead of being rendered correctly. Example Request: curl -X POST…
Context parameters are not replaced in Teams iOS application.
We have one Teams app in which we are using the context for app/tab. We are following the documentation correctly and seeing no issue in Android, Mac, PC. However when we are in iOS teams app, then context parameters are not being replaced with their…
A positional parameter cannot be found that accepts argument
Hi All I used the following syntax to grant "TempPolicy1" globally. However, I am encountering an error while trying to remove this policy "TempPolicy1" globally Please guide me. Grant-CsApplicationAccessPolicy -PolicyName…
Open graph thumbnail previews for urls get cut off
When posting a url in teams, we get shown a thumbnail preview of the website's opengraph tag for image. However the thumbnail preview has it's sides cut off. There is a weird cropping that is happening. The standard recommendation for websites for open…
Teams' JavaScript SDK's app.openLink unable to execute Office's native app URLs
We are using TeamsJS SDK's app.openLink function to open the Office files in the native app. The URLs that we are using is a valid URL which follows Office URI Schema. This is working as expected if we open the personal app in Teams. But if we open the…
How can I get help creating a teams app?
I am new to app delvelopment for teams. I have created an app to access an internal sharepoint site, but now I want to create one to access an external URL. I'm struggling to get any useful help. I have opened Visual Studio Code and got Teams Tool kit.…
Is there any limitation or permissions required when sharing to a Teams chat through a web page?
Hello! Recently when I trying to share to teams from a sharing window (https://teams.microsoft.com/share), I got the error message says "We could not share the link. Try sharing it again." However this not happens to all users. Some users could…
Is it theoretically possible to send a message exceeding 40KB in Teams bot?
Hello, I am using the following endpoint to send messages to a Teams bot, including multiple Adaptive Cards: Bot Framework REST API - Send to Conversation Suppose I include five Adaptive Cards, each 10KB in size, in the attachments field (resulting in a…
How do I stop the bot/personal app chat from appearing when I click the deep link to navigate to a tab in MS Teams mobile?
Hello, In microsoft teams mobile I will have my bot display a deep link to the app tab. However, in the mobile experience that deep link will navigate to the tab but the bot chat app will also appear. How do I make it stop? No issues with the desktop…
Retrieving User Email from a Teams Bot Developed with Teams Toolkit in Python
We have successfully published a Teams bot within our organization, and it is functioning correctly. Now, we want to retrieve the email ID of users interacting with the bot. We are using Teams Toolkit for development in Python.