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
0 answers

TeamsFX with the Blazor CascadingAuthenticationState

I've been able to confirm that the SSO for my Blazor app is working with the TeamsFX service, however I've failed to authorize the SSO credential with the CascasdingAuthorizationState component around the app Router. Does the TeamsFX service extend…
0
votes
1 answer

"Blank tabs" on Teams App update deployment (Teams Toolkit)

My Teams app: multi-tenant deployed using Teams Toolkit to Azure Storage, CDN enabled with a Custom Domain in alpha use by internationally distributed organisation (third party, not me), users around the world the app functionality works fine…
0
votes
0 answers

Get teams members details of MS Teams using Teams.js/sdk

In configurable MS Teams tab app, is it possible get teams member details using Temas.js such as how it gives the context details like below import { app, Context } from "@microsoft/teams-js"; app.getContext().then((context: Context) => { …
DevÁsith
  • 1,072
  • 12
  • 38
0
votes
0 answers

Teams file consent card not sending "accept" activity to bot handler while implementing Teams Bot API , it is showing went wrong

We have a Teams bot installed for internal company use and it is capable of sending files to our users. Our application that handles the bot does not receive the file consent allow activity but decline activity is working fine , as said in the…
0
votes
1 answer

I want to check a checkbox if an element if an element belong to a list

I am developing a reactJS app. I am returning checkboxes and I want to check weather the checkbox I am returning has been already checked. When a checkbox is checked the value of that checkbox is added to a list which is stored on a db. When I…
F4L4X
  • 17
  • 5
0
votes
1 answer

Do we need to OAuth Connection setting for MS Teams toolkit bot?

I am using the latest MS Teams toolkit 4.1.3. After I used "Provision in the cloud" and "Deploy to the cloud" two deployment options to deploy my SSO enabled bot to the Azure and AAD, I don't see any "OAuth Connection Settings" were included to the…
Verona Chen
  • 131
  • 1
  • 8
0
votes
1 answer

How to obtain the conversaton info of previous participants when you have installed the teams app?

I have a teams bot. When I installed it for the first time, I can obtain the conversation info of new participants through the bot services. But when I have installed the teams app, How can I get the conversation info of previous participants? find…
24K_gold
  • 1
  • 1
0
votes
1 answer

Receiving “(BotNotInConversationRoster) The bot is not part of the conversation roster for self created teams” channels

We have a MS Teams App and we are seeing that our message extension is not working in self created teams’ channels. When trying to use any action of message extension in self created teams it is giving “(BotNotInConversationRoster) The bot is not…
magnito03
  • 11
  • 1
0
votes
2 answers

Im getting an error when I try to use a react hook in a Teams App

I am developing a microsoft Teams App. I did a React JS project before starting the Teams app (which is pretty much the same thing) and I had not issues everything was working well. My problem is whenever I try to call a hook in a useEffect function…
F4L4X
  • 17
  • 5
0
votes
1 answer

"Error: validateAndFixActivity(): missing activity type."

I've created a Teams bot using the 'Post messages to Teams' template from VS Code Teams Toolkit plug v4.1.3. After provisioning and deploying it to Azure, sending a POST request to it results in a 400 Bad Request with the following response: "Error:…
Mook5ter
  • 213
  • 4
  • 9
0
votes
2 answers

Navigate to new Teams page

New to Teams (and Blazer) dev and are stumped by a seemingly simple question using the Teams Toolkit. We have two Razer pages (ie. under the "Pages" folder in the project - as any asp.net core app has) and want to click from one page to the next…
xnetdude
  • 159
  • 1
  • 12
0
votes
0 answers

Unable to send messages to more than 1000 users in MSTeams using BotFramework

I am working on creating a MSTeams BOT. I am using Microsoft.Bot.Builder(4.15.2), Microsoft.Bot.Connector (4.15.2) to send a message to the 1000 bot users asynchronously using the below code. public async Task SendMessage(string tenantId,…
0
votes
2 answers

Im trying to implement a DatePicker in a teams App

Hi I'm creating a Teams App and im having trouble implementing a DatePicker in one of my screen. My basic test screen: import React from "react"; import DatePicker from "react-datepicker"; import "react-datepicker/dist/react-datepicker.css"; export…
F4L4X
  • 17
  • 5
0
votes
1 answer

Teams Tookit Blazor - Unable to use Resize event across multiple tabs

I am currently trying to re-register an event I am using upon switching tabs. The JS is: window.resizeListener = function (dotnethelper) { $(window).resize(() => { let browserWidth = $(window).innerWidth(); let browserHeight =…
JuniorDev
  • 1
  • 1
0
votes
0 answers

Recaptcha is not valid in Microsoft Teams tab app

I have a tab app which uses a popup window (microsoftTeams.tasks.startTask) to login the user. This popup window contains an iframe to my actual website login. This login flow completely works in the web version of Microsoft Teams (it saves the…