Questions tagged [teams-toolkit]

The Teams Toolkit is a collection of solutions and tools for Microsoft Teams developers to ease their development work. Teams Toolkit includes IDE extensions for Visual Studio Code and Visual Studio named 'Microsoft Teams Toolkit', code libraries like Teams Framework 'teamsfx' and Teams Client library 'teams-js', and a command line tool 'teamsfx' for terminal users.

224 questions
0
votes
2 answers

How do I get a Graph API token with higher permission than the user?

I am currently developing a Microsoft Teams tab app using Teams Toolkit. The users of the app should be able to invite guest users to certain teams and edit some of the users information in AD. This requires higher permission level than the users…
0
votes
0 answers

Format of Teams Chat URL

I have an app that runs within Teams that shows a list of employees, name, email, presence, title and phone. For the name column I would like to present it as a link that when clicked will open up a chat within the Teams desktop or mobile app with…
0
votes
1 answer

Open a internet web site from a custom static tab in teams app

I'm trying to open a web page that's available on the internet without authentication from a custom Teams app tab. The page can be openend in an iframe also. Using fiddler I can see the page being accessed, but Teams doesn't display the tab. Should…
Chris3568
  • 1
  • 1
0
votes
0 answers

Custom Teams Office 365 Connector cannot be setup

The problem I am trying to build a configurable team tab with a custom connector but having serious issues when the teams app is installed and try to configure the connector. I created tab apps and they work fine. But the connector, on its own or…
Barrett
  • 470
  • 4
  • 11
0
votes
1 answer

"Could not exchange access token for unknown reasons" ; In-meeting App Meeting Extension

Myself and a team member have followed the 'Try this sample' and 'Use the app in Teams' instructions for the In-Meeting sample application to develop an app for Microsoft…
Link
  • 317
  • 1
  • 5
  • 17
0
votes
0 answers

Compose Extension: One command displayed twice in MS Teams compose box

{ "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.5/MicrosoftTeams.schema.json", "manifestVersion": "1.5", "version": "1.0.0", "id": "BOT-ID", "packageName": "com.microsoft.teams.appName", "developer": { …
0
votes
1 answer

Microsoft Graph Toolkit PeoplePicker onChange event not triggering in mobile

We are using PeoplePicker in the Teams Personal Tab, we are able to trigger onChange event in the Desktop and browser but not in the Teams Mobile App. We are rendering the PeoplePicker in a Modal component (All are Fluent UI react components).
0
votes
1 answer

Submit Adaptive Cards in MSTeams with Outgoing Webhook

I am following Add Outgoing Webhooks to show an adaptive card with text prompt: { "type": "message", "attachments": [ { "contentType": "application/vnd.microsoft.card.adaptive", "content": { "$schema":…
Alex Blex
  • 34,704
  • 7
  • 48
  • 75
0
votes
1 answer

How to Enable the user install the bot by default and not tab on teams app manifest

Hi guys I have been trying to enable my bot on default, the bot needs to be installed directly to the Microsoft team's channel. Below is the schema of my app manifest in teams { "$schema":…
0
votes
1 answer

Facing HTTP error when communicate with teams bot by using teamsFx

I am facing this error ‘There was an error sending this message to your bot: HTTP status code InternalServerError’ in Post deployment to the Azure. Check this image for error Web Chat Error And sometime running the bot in my local is not working by…
Vignesh M
  • 1
  • 1
0
votes
1 answer

Teams FX(Teams Toolkit) Localization

We have created a Teams Tab using Teams Toolkit. I would like to know how to implement localization in TeamsFX project. In SPFX we implemented this using localization files under "Loc" folder created by default. Any ideas?
Sai
  • 1
0
votes
1 answer

Microsoft Teams Desktop Personal app not working with SPFX and GraphApi

I added a Personal Tab in MS Teams which references a SharePoint Webart with on it an SPFx webpart using @microsoft/microsoft-graph-client. In the MS Teams Web Client on TEST and PROD the page loads as expected, and the…
0
votes
1 answer

How to work with dynamic parameters of teams messaging Extension?

with the new addition of developer portal, how do you configure a messaging Extension with action command having dynamic parameter. Developer portal popup
0
votes
1 answer

How can I invoke a task module on handleTeamsMessagingExtensionSelectItem(...)?

I am building a messaging extension app for MS Teams using the Teams-Toolkit in Visual Studio Code. I have been able to launch task modules from the message context without a problem but is there a way to launch a task module from…
0
votes
1 answer

TeamsFx Hello World Auth Service

I am running the Hello-World-Tab-With-Backend example from TeamsFx. As expected when debugging it launches the Front end and back end services but I noticed that its also launching an Auth service (see image below). Can someone help me understand…