How to setup Workflows Post Webhook Messages in a Microsoft Teams channel

Поделиться
HTML-код
  • Опубликовано: 19 янв 2025

Комментарии • 49

  • @neoturfmasterMVS
    @neoturfmasterMVS 4 дня назад +1

    Man this is like leading a horse half way to water. This accomplishes nothing, yet we did some work.

  • @alexandrutoma9187
    @alexandrutoma9187 5 месяцев назад +14

    how about sending a request to your workflow? does it work?
    what happens when you press "Run flow" . I am sitting for more than 4 hours why i get "Flow ... cannot be installed." when i press run to test the flow . Its teeeeeeerrrrible frustrating, i have 0 ideas why everyone just not move to slack.

    • @blinkme0182
      @blinkme0182 5 месяцев назад

      I get the same error that it can't be installed, did you ever figure it out? I came here hoping he would show the entire process and show successful run/test where the webhook triggered a message

  • @ufuk.gokdemir
    @ufuk.gokdemir 4 месяца назад +1

    Thank you so much. This' s solved a big problem for me which I could not use Incoming Webhook for Grafana Alerting since it' s deprecated

  • @support2295
    @support2295 5 месяцев назад +1

    Good afternoon, can you record the full video?? because it does not show how to configure work flow

    • @moveworkforward
      @moveworkforward  5 месяцев назад

      Please check other videos on our channel.

  • @brecken3163
    @brecken3163 6 месяцев назад +3

    Hi, thanks for the video. Could you show how to use the url, idk using postman for example.
    Great day.

    • @moveworkforward
      @moveworkforward  6 месяцев назад +1

      We are recording this video and will publish it shortly. Pls subscribe to the channel.

    • @moveworkforward
      @moveworkforward  6 месяцев назад

      Please see our latest video: ruclips.net/video/HhlUKGZBcKY/видео.html

  • @lamayouz6263
    @lamayouz6263 6 месяцев назад +3

    What is the next step? how to use the generated workflow url to create a post in the channel?

    • @moveworkforward
      @moveworkforward  6 месяцев назад

      Hi,
      This video exactly generates a workflow to post a message in a channel.
      However, you need to trigger it by sending an adaptive card of version 1.2 - learn.microsoft.com/en-us/power-automate/overview-adaptive-cards
      We are releasing updates to all our Microsoft Teams integrations this week where we add support to Power Automate Post message URLs.

    • @johndoe59717q
      @johndoe59717q 6 месяцев назад +1

      @@moveworkforward Thanks for the video. I thought I could use that URL for a service that can be set up with an incoming webhook, but the workflow URL is not accepted. Searched the web and I'm not finding useful information and generally confused. Microsoft says Workflows are replacing incoming webhooks... but does this mean third party services have to update something to allow us to use Workflows URL instead?

    • @moveworkforward
      @moveworkforward  6 месяцев назад

      @@johndoe59717q 2 things need to happen: the 3rd party service need to accept the URLs (new format) AND the messages should be sent as Adaptive Cards v1.2
      Which service are you integrating with?

    • @johndoe59717q
      @johndoe59717q 6 месяцев назад

      @@moveworkforward Veeam Data Cloud

    • @johndoe59717q
      @johndoe59717q 6 месяцев назад

      @@moveworkforward Veeam Data Cloud

  • @ujwalkavalipati9560
    @ujwalkavalipati9560 6 месяцев назад +2

    incomplete information, can you please show by sending something through this workflow?

    • @moveworkforward
      @moveworkforward  6 месяцев назад

      Using postman? Or one of our existing apps for Jira or Confluence?

    • @anibalcardozo3204
      @anibalcardozo3204 6 месяцев назад

      @@moveworkforward postman would be the most flexible option

    • @moveworkforward
      @moveworkforward  6 месяцев назад +1

      @@anibalcardozo3204 You will make another video on how to post t he message, also. Meanwhile,
      You can post this JSON (as example). The only thing is to add Content-Type hear "application/json".
      {
      "type":"message",
      "attachments":[
      {
      "contentType":"application/vnd.microsoft.card.adaptive",
      "contentUrl":null,
      "content":{
      "$schema":"adaptivecards.io/schemas/adaptive-card.json",
      "type":"AdaptiveCard",
      "version":"1.2",
      "body":[
      {
      "type": "TextBlock",
      "text": "For Samples and Templates, see [adaptivecards.io/samples](adaptivecards.io/samples)"
      },
      {
      "type": "Image",
      "url": "adaptivecards.io/content/cats/1.png"
      }
      ]
      }
      }
      ]
      }

    • @WilsonsHat
      @WilsonsHat 6 месяцев назад

      @@moveworkforward this does not work

    • @moveworkforward
      @moveworkforward  6 месяцев назад

      What does not work? This video shows how to create a url to post messages. However, it does not show the other side - how to send. Pls see the description to see other video with examples how the url could be used.

  • @DheerajSharma-bz6mt
    @DheerajSharma-bz6mt 6 месяцев назад +2

    How can i post to channel from linux terminal or python program ?

    • @moveworkforward
      @moveworkforward  6 месяцев назад +1

      Hi,
      You need to CURL an adaptive card.
      CURL command here: // on macOS or Linux
      curl -H 'Content-Type: application/json' -d '{"text": "Hello World"}'
      Adaptive cards - learn.microsoft.com/en-us/power-automate/overview-adaptive-cards
      Important: You need to use version 1.2 of adaptive cards.

    • @chenchen55688
      @chenchen55688 6 месяцев назад +2

      @@moveworkforward I followed your video and I'm sure I'm using a public team/channel. Using curl I encounter certificate issue: `curl: (60) SSL certificate problem: self signed certificate in certificate chain` any ideas? thanks

    • @moveworkforward
      @moveworkforward  6 месяцев назад +1

      Hi,
      I think there is a potential issue with your firewall/proxy.
      This could help stackoverflow.com/questions/24611640/curl-60-ssl-certificate-problem-unable-to-get-local-issuer-certificate

    • @grishavydr
      @grishavydr 6 месяцев назад

      @@moveworkforward i got "DirectApiAuthorizationRequired","message":"The request must be authenticated only by Shared Access scheme.
      its so hard i gust want to post message with url in teams from pipeline...

    • @moveworkforward
      @moveworkforward  6 месяцев назад

      Here is the video with a demo using postman ruclips.net/video/HhlUKGZBcKY/видео.html

  • @jeffreydavis9791
    @jeffreydavis9791 2 месяца назад

    I have done this ten times now and I get "Flow cannot be installed". I need a more detailed tutorial on how to really set this up and how to consume it.

    • @moveworkforward
      @moveworkforward  Месяц назад

      Sorry, please reach out to our support team pls.

  • @jhonfabricio8222
    @jhonfabricio8222 6 месяцев назад

    Hello, there is an option with workflows for integration with Servicenow that previously used webhook but due to this decision by Microsoft, Servicenow has published that only the Microsoft Graph spoke API will be used, that is, it does not give an option to the Microsoft workflow solution.

    • @moveworkforward
      @moveworkforward  6 месяцев назад

      Each vendors supports what it want.

    • @moveworkforward
      @moveworkforward  6 месяцев назад

      Here is the video with a demo using postman ruclips.net/video/HhlUKGZBcKY/видео.html

  • @YulianKukhlevskyy
    @YulianKukhlevskyy 6 месяцев назад

    Very interesting content!

  • @williamrvv1
    @williamrvv1 3 месяца назад

    porqué la página se llama Move Work Forward en español si esto está en inglés?

  • @WilsonsHat
    @WilsonsHat 6 месяцев назад

    This doesn't actually tell us how to use that setup. What kind of JSON can be sent to that webhook? What are the constrains on schema? As soon as you try to run the webhook the application will simply error out with "cannot install"

    • @moveworkforward
      @moveworkforward  6 месяцев назад

      Yes, the idea is to move from incoming webhooks to the workflows app. It only accepts adaptive cards 1.2-1.5 versions.
      Webhooks are going away

  • @CruzeMcFarlane-1
    @CruzeMcFarlane-1 5 месяцев назад

    how do i get the body of that request

    • @moveworkforward
      @moveworkforward  5 месяцев назад

      You can use Microsoft Teams adaptive cards designer to create your own card or use any of the examples they provide.

  • @moveworkforward
    @moveworkforward  6 месяцев назад

    Our latest video for creating workflows with Postman: ruclips.net/video/HhlUKGZBcKY/видео.html

  • @GiaosuCan
    @GiaosuCan 6 месяцев назад

    is that guideline?????

    • @moveworkforward
      @moveworkforward  6 месяцев назад

      This is a guideline on how to generate a post message url only, without any details on how to use it.