简体   繁体   中英

Can azure logic app can run multiple HTTP request on single trigger?

I need to make 6 HTTP request using trigger in one logic resource only. How can I make multiple HTTP request from logic app. Also Azure logic app showing error "This session has timed out. To see the latest run status, navigate to the runs history blade."

All the http request should be independent of each other. If any documents is available for this please share.

Every logic app workflow starts with a trigger , which fires when a specific event happens, or when new available data meets specific criteria.

Each time that the trigger fires , the Logic Apps engine creates a logic app instance that runs the actions in the workflow.

For HTTP trigger, follow the doc Call, trigger, or nest workflows with HTTP endpoints in Azure Logic Apps

YES. This is a very basic pattern.

How? Well, you just do. If it's exactly 6 calls, you can use 6 HTTP Connectors. If it's variable, you have to loop on whatever incoming set you have and put the HTTP Connector in the loop.

All outbound request are independent of each other.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM