343 questions
Advice
0
votes
5
replies
63
views
Hosting external web app in Microsoft Teams tab and sharing with all meeting participants
So far I've managed to host my external web app inside a static tab and this seems to work great - I can even interact with the Teams Javascript SDK from my app if needed although this is not an ...
0
votes
0
answers
32
views
Unable to debug Teams Meeting Tab app after moving the scope from groupChat, team to personal
With Manifest 1.17 I moved my Meeting Tab app to personal scope to allow adding of the app automatically to meeting entries when a meeting was created using the meeting extension option.
Now I have ...
0
votes
0
answers
57
views
Microsoft365 agents toolkit - app selection
I'm trying to create an app/agent for teams and Microsoft 365 copilot. I already have my users authenticated via Microsoft Entra External ID for my web app. I'd like to use the same process here like ...
0
votes
0
answers
83
views
Bot Framework fails to obtain token with User Assigned Managed Identity from AKS pod
I'm deploying a bot backend in an AKS pod using a User Assigned Managed Identity (UAMI). The bot backend can access Azure services like KeyVault and AppConfiguration using this UAMI without issues. ...
1
vote
1
answer
72
views
'Processing Error' from M365 Agents Toolkit Declarative Agent when connecting to Azure Logic Apps through HTTP request
I've created a Declarative Agent using the M365 Agents Toolkit. I configured an action with the openAPI spec to connect to an Azure Logic App I have set up. The logic app is triggered when an HTTP ...
0
votes
0
answers
91
views
Not able to get members from TeamsInfo.getMember(context,...) after package updates
I recently updated the following package in my Teams bot project:
"@microsoft/teamsfx": "^4.0.0" // previously using 3.0.0
After the update, some code broke due to changes in the ...
0
votes
0
answers
58
views
AADSTS65001: The user or administrator has not consented to use the application with ID 'xxxxxxx' named 'xxxx +'. with outlook add in
const Email: React.FC = () => {
useEffect(() => {
// This ensures the Office.js API is initialized
Office.onReady(async (info) => {
if (info.host === Office.HostType....
1
vote
1
answer
70
views
Blazor Server Teams App — How to use Teams authentication with AuthorizeRouteView?
I'm building a Blazor Server app integrated with Microsoft Teams, and I want to use AuthorizeRouteView to protect certain pages/routes based on Teams authentication.
I found official Microsoft samples,...
-2
votes
1
answer
96
views
Not able to use bot app in more than one channels of Microsoft Teams
I created an app that is a bot using the VSCode extension TeamsToolkit.
This tool gives some options of the kind of app, and I chose the 'notification bot' app as that is the main purpose of my ...
0
votes
1
answer
86
views
Declarative Copilot Document: declarativeAgent.json. Problems discovered: OpenApi document size exceeds the limit of 102400 KB
I'm building a declarative Agent in VS Code.
I'm ingesting the Pipedrive Open API -> https://developers.pipedrive.com/docs/api/v1/openapi-v2.yaml
I have selected 10 API calls.
When I tried to ...
0
votes
1
answer
109
views
Not able to show the sso dialog in teams bot as nothing happens after begin dialog step
I'm trying to implement sso in my teams bot quite like this example here
https://github.com/OfficeDev/teams-toolkit-samples/tree/dev/bot-sso
But I'm not about to show any dialog or prompt user to sign ...
0
votes
1
answer
104
views
Error: Get ServiceUrl failed. unable to get local issuer certificate in Teams toolkit with outlook plugin
Using teams toolkit to develop outlook plugin,
PS C:\Project\dev-gen-ai-office-addins\src\Clients\OutlookPlugin> node -v
v16.20.2
Webpack logs
You already have trusted access to https://localhost.
...
0
votes
0
answers
54
views
Teams message extension - Dialog with an embedded web view NOT shown after returned by OnTeamsMessagingExtensionFetchTaskAsync
We have a demo teams app which has tab, bot and message extension using vs2022 and teams toolkit. According to https://learn.microsoft.com/en-us/microsoftteams/platform/messaging-extensions/how-to/...
0
votes
1
answer
134
views
Teamsapp cli Azure login throws error 'invalid_scope' for user_impersonation
When using the TeamsApp CLI and trying to login using Azure, the terminal throws below error. I have granted the following rights with admin consent.
I am using the following command (TeamsApp CLI v3....
0
votes
0
answers
52
views
How do I host my teams toolkit app on prem
I'm unable to find any information to properly host a Teams Toolkit app on prem.
I'm using the Echo Chat bot template which works locally. I then published the application to my windows server to run ...