microsoft-teams

Redirection to another tab from within a tab fails in Microsoft Teams

拈花ヽ惹草 提交于 2021-01-29 10:51:18
问题 I have installed an app in a tab and wanted to redirect to another tab. The url of the tab is of the form https://teams.microsoft.com/l/channel/<entityId>/<tabId>?label=Wiki&groupId=<groupId>&tenantId=<tenantId> For doing this I have tried the following - window.location.href= url //Tabs Url When viewing the console, I see a mixed content error saying that msteams is being accessed from https page. This is inspte of the fact that I am redirecting to a https url. Also, no redirection.

Bot Handoff integration with teams

夙愿已清 提交于 2021-01-29 10:46:01
问题 I am working with bot handoff integration with teams. I have go through some Microsoft samples and seen some solutions. one Solution is intermediate bot sample integration with teams and other one is using the handoff sdk to initiate the bot handoff and using a third party portal to connect with live agent. Below are the solutions which i have followed. https://github.com/microsoft/BotBuilder-Samples/tree/main/experimental/handoff-library/csharp_dotnetcore/samples https://github.com/tompaana

Web Chat did not display the result

只愿长相守 提交于 2021-01-29 09:13:08
问题 Currently, I had developed Microsoft Graph ChatBot which retrieves the data from SharePoint but when I debug in Emulator its work, but I deploy in WebChat the result did not display. The results from Emulator, The results from WebChat Anyone know how to solve it or suggestion? 回答1: There are currently two versions of Web Chat: Gemini and Scorpio. Test in Web Chat is still using the older version - Scorpio - which unfortunately does not support OAuth Cards. The BotFramework Development Team is

Is there a way I can give column padding to an adaptive card- Adaptive MS BOT

家住魔仙堡 提交于 2021-01-29 07:02:19
问题 I'm using an adaptive card to display dynamic content in a table using the, adaptive-cards templating package. I have been to customize it but one column is still refusing to fall in place, the column would always have more content than others. So it's falling out of rows, therefore expanding the table and making it look ugly.[![enter image description here][1]][1] async testTableData(context) { var tablePayLoad = { $schema: "http://adaptivecards.io/schemas/adaptive-card.json", "type":

Get teamId in message extension handler

折月煮酒 提交于 2021-01-29 07:02:14
问题 When developing a message extension for Microsoft Teams, is it possible to retrieve the ID of a team where the user is invoking the message extension command without first adding the bot to that team? I can do this when the bot is added to the team manually based on TeamsInfo.getTeamDetails() , however, I don't really need (or want) to add the bot to the team for my goal. All I need is the channel ID (which is available from the context/conversation) and the ID of the underlying team.

Unable to save tab of custom app in teams scope

核能气质少年 提交于 2021-01-29 07:02:01
问题 I can open my app independently in my own panel but cant add it to a team im owner of. Is there a rule against this or am I missing somthing ? Please ask for any infomation im missing, new to teams development. 回答1: Needed to add 'team' scope for static tabs in the manifest.json 来源: https://stackoverflow.com/questions/55616328/unable-to-save-tab-of-custom-app-in-teams-scope

Unable to save tab of custom app in teams scope

北慕城南 提交于 2021-01-29 06:53:13
问题 I can open my app independently in my own panel but cant add it to a team im owner of. Is there a rule against this or am I missing somthing ? Please ask for any infomation im missing, new to teams development. 回答1: Needed to add 'team' scope for static tabs in the manifest.json 来源: https://stackoverflow.com/questions/55616328/unable-to-save-tab-of-custom-app-in-teams-scope

Retrieve Teams User ID based on AAD ID

若如初见. 提交于 2021-01-29 01:36:22
问题 I am trying to start a scheduled proactive conversation (the bot initiates the conversation on scheduled time). I managed to get the User's AAD ID based on Graph API, but it doesn't match the Teams user ID. Tried for over 2 hours to obtain the right id, but I can't figure it out how. What would be the best approach I should take? 回答1: I'm curious how you tried to "match" these? In any case, I don't think they're intended to match up in any way (the aadObjectId Guid and the "29:..." user id).

Why are we suddenly getting 403 on graph calls to list a team's channels?

♀尐吖头ヾ 提交于 2021-01-28 07:40:33
问题 We do run the GET call: https://graph.microsoft.com/v1.0/teams/711fc163-0408-4649-9a30-af65a5d30b52/channels It used to return the channels just fine, but this week it suddenly starting failing with this error: { "error": { "code": "AccessDenied", "message": "Failed to execute Skype backend request GetThreadsS2SRequest.", "innerError": { "request-id": "226d8e17-fa0f-4c42-8139-4776e198a3b2", "date": "2019-08-26T19:25:10" } } } We see that the problem is happening for different teams and across

Microsoft Teams Graph API - Invalid bind property name owners in request

一世执手 提交于 2021-01-28 06:58:08
问题 I'm currently having major issues with creating teams from the Graph API. I was initially trying to create teams based on groups, however I have found out today that you can now create a team without creating a group first then waiting 15 minutes to then create the team from the following link. This would make things considerably simpler. https://docs.microsoft.com/en-us/graph/api/team-post?view=graph-rest-1.0 I am using the Microsoft.Graph SDK (v3.12.0 released 26th Aug) so replicated the