简体   繁体   English

azure 逻辑应用程序可以在单个触发器上运行多个 HTTP 请求吗?

[英]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.我只需要在一个逻辑资源中使用触发器发出 6 个 HTTP 请求。 How can I make multiple HTTP request from logic app.如何从逻辑应用程序发出多个 HTTP 请求。 Also Azure logic app showing error "This session has timed out. To see the latest run status, navigate to the runs history blade."此外 Azure 逻辑应用程序显示错误“此 session 已超时。要查看最新的运行状态,请导航到运行历史记录刀片。”

All the http request should be independent of each other.所有的 http 请求应该是相互独立的。 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对于 HTTP 触发器,请按照文档调用、触发器或嵌套工作流与 Azure 逻辑应用程序中的 HTTP 端点

YES.是的。 This is a very basic pattern.这是一个非常基本的模式。

How?如何? Well, you just do.好吧,你就这么做。 If it's exactly 6 calls, you can use 6 HTTP Connectors.如果正好是 6 个调用,则可以使用 6 个 HTTP 连接器。 If it's variable, you have to loop on whatever incoming set you have and put the HTTP Connector in the loop.如果它是可变的,您必须循环您拥有的任何传入集并将 HTTP 连接器放入循环中。

All outbound request are independent of each other.所有出站请求都是相互独立的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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