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.
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
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.
@@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?
@@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?
@@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" } ] } } ] }
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.
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.
@@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
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
@@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...
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.
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.
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"
Man this is like leading a horse half way to water. This accomplishes nothing, yet we did some work.
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.
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
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
Glad to hear
Good afternoon, can you record the full video?? because it does not show how to configure work flow
Please check other videos on our channel.
Hi, thanks for the video. Could you show how to use the url, idk using postman for example.
Great day.
We are recording this video and will publish it shortly. Pls subscribe to the channel.
Please see our latest video: ruclips.net/video/HhlUKGZBcKY/видео.html
What is the next step? how to use the generated workflow url to create a post in the channel?
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.
@@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?
@@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?
@@moveworkforward Veeam Data Cloud
@@moveworkforward Veeam Data Cloud
incomplete information, can you please show by sending something through this workflow?
Using postman? Or one of our existing apps for Jira or Confluence?
@@moveworkforward postman would be the most flexible option
@@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"
}
]
}
}
]
}
@@moveworkforward this does not work
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.
How can i post to channel from linux terminal or python program ?
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.
@@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
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
@@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...
Here is the video with a demo using postman ruclips.net/video/HhlUKGZBcKY/видео.html
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.
Sorry, please reach out to our support team pls.
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.
Each vendors supports what it want.
Here is the video with a demo using postman ruclips.net/video/HhlUKGZBcKY/видео.html
Very interesting content!
porqué la página se llama Move Work Forward en español si esto está en inglés?
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"
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
how do i get the body of that request
You can use Microsoft Teams adaptive cards designer to create your own card or use any of the examples they provide.
Our latest video for creating workflows with Postman: ruclips.net/video/HhlUKGZBcKY/видео.html
is that guideline?????
This is a guideline on how to generate a post message url only, without any details on how to use it.