microsoft-teams

Unable to create Planner as a Tab in Microsoft Teams

假如想象 提交于 2021-02-10 05:13:08
问题 I have a set of Microsoft Teams that I'm unable to add a Microsoft Planner tab to. When I try and add the Planner I get the dialog and put in the Planner name and click Create and it gives back a Create Plan Failed message. No other information is returned. This happens doesn't happen in all Microsoft Team, ones that are created normally in the teams app work fine, but ones that I create through the Microsoft Graph have this problem. Here is the code that I'm using to create the team. public

Microsoft Teams escaping underscores in text

浪尽此生 提交于 2021-02-08 11:38:50
问题 I have following function in ruby to send aws logs to microsoft team channel through webhook. Some text contains underscore signs like connection_web but appears like connectionweb in MS teams. How to get the exact output ? require 'json' require 'net/https' require 'uri' require 'base64' require 'zlib' require 'stringio' def lambda_handler(event:, context:) log_event = JSON.parse(decode_and_decompress(event["awslogs"]["data"])) response = speak(messages_from_blob(log_event)) puts response

Microsoft Teams escaping underscores in text

北战南征 提交于 2021-02-08 11:38:43
问题 I have following function in ruby to send aws logs to microsoft team channel through webhook. Some text contains underscore signs like connection_web but appears like connectionweb in MS teams. How to get the exact output ? require 'json' require 'net/https' require 'uri' require 'base64' require 'zlib' require 'stringio' def lambda_handler(event:, context:) log_event = JSON.parse(decode_and_decompress(event["awslogs"]["data"])) response = speak(messages_from_blob(log_event)) puts response

Basic Authentication instead of AAD (Azure Active Directory) Authentication

强颜欢笑 提交于 2021-02-08 11:14:12
问题 my Microsoft Teams app needs to access a REST web service that uses Basic Authentication. the tutorials only seem to show how to do this for authentication with Azure Active Directory: https://docs.microsoft.com/en-us/learn/modules/embedded-web-experiences/7-exercise-implement-tab-authentication the above tutorial shows the user a login prompt and authenticates client side. how do i implement something like this for Basic Authentication? EDIT : i'm mentioning client side because i want Teams

Basic Authentication instead of AAD (Azure Active Directory) Authentication

核能气质少年 提交于 2021-02-08 11:07:03
问题 my Microsoft Teams app needs to access a REST web service that uses Basic Authentication. the tutorials only seem to show how to do this for authentication with Azure Active Directory: https://docs.microsoft.com/en-us/learn/modules/embedded-web-experiences/7-exercise-implement-tab-authentication the above tutorial shows the user a login prompt and authenticates client side. how do i implement something like this for Basic Authentication? EDIT : i'm mentioning client side because i want Teams

How do I post a message to Microsoft team from other application

£可爱£侵袭症+ 提交于 2021-02-08 06:53:47
问题 I am trying to make a custom method in my desktop application (using C#), to post a message into a Microsoft team. but I still don't know what kind of tool or services to get it done. is it possible to achieve it? if yes, how? I found a nugget regarding MS-Teams in Visual Studio. but it won't work. as in Visual studio market place. what I found is https://marketplace.visualstudio.com/items?itemName=ms-vsts.vss-services-teams But it seems like doesn't meet my requirement. 回答1: You can follow 3

Python: Not getting the response for Message Back action in MS Teams Adaptive Cards

感情迁移 提交于 2021-02-07 10:44:17
问题 I am new to Python and have been trying to integrate it with MS Teams using an outgoing webhook. I have created a simple web service to handle post request using flask and I am hosting it using ngrok and the resulting URL from ngrok have been used as the Outgoing webhook callback URL in teams. I am able to receive message in my service and send an adaptive card as response. But if I fill out the information and click Submit I get 'Something went wrong. Please try again' error and I am not

Personal Tab Renders Fine, then a few seconds later shows “There was a problem reaching this app”

☆樱花仙子☆ 提交于 2021-01-29 14:31:04
问题 I'm testing something in a personal tab (something related to SSO, if that's important in context), and the tab renders fine for about 30 seconds or so, then suddenly gets replaced with an error "There was a problem reaching this app" (the one with the image of a woman and a thought bubble). Does anyone know why this suddenly happens AFTER the tab has ALREADY rendered ok? 回答1: I finally found an answer to this, so posting in case someone else has the issue. Basically, Teams manifest recently

MS Teams - Starting a call from an Android app

让人想犯罪 __ 提交于 2021-01-29 14:23:44
问题 I would like to know if it is possible to start a MS Teams call from an Android application? If so, where can I find an example intent to start the call? I only found this instruction regarding starting calls in Skype for Business and this topic regarding starting chats in MS Teams, but I can't found anything regarding starting calls in MS Teams. 来源: https://stackoverflow.com/questions/63918326/ms-teams-starting-a-call-from-an-android-app

Video playback in Adaptive card of MS teams

*爱你&永不变心* 提交于 2021-01-29 12:34:25
问题 I get a message "Media playback is currently not supported in Adaptive Cards in Teams" on the adaptive card when rendered in the channel MS teams. Although it seems its not officially supported ,i was wondering is there any workaround to play videos on adaptive card in MS Team Channel? Any help would be gladly appreciated. 回答1: Playing video inside an Adaptive Card is not supported. You could try opening a task module on click of a Adaptive card button and play a video inside TaskModule.Here