简体   繁体   English

Calling Azure logic app from Azure Python HTTP trigger function

[英]Calling Azure logic app from Azure Python HTTP trigger function

I want to call an Azure logic app from Azure python based HTTP trigger function. I want to call an Azure logic app from Azure python based HTTP trigger function. Here is the end line (returning statement) of my python function which is returning expected value:这是我的 python function 的结束行(返回语句),它返回预期值:

        return func.HttpResponse(successres)
    else:
        return func.HttpResponse(failedsres)

Now I want to call a HTTP trigger based logic app with passing 'successres' as JSON body.现在我想调用一个基于 HTTP 触发器的逻辑应用程序,并将“successres”作为 JSON 主体传递。

Any help will be great.任何帮助都会很棒。

Create a callable endpoint for your App and call it.为您的应用程序创建一个可调用端点并调用它。

Some more details here .更多细节在这里

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

相关问题 来自 RestTemplate java 的 azure 逻辑应用程序的调用请求触发器 url - calling request trigger url of azure logic app from RestTemplate java Azure逻辑应用程序接收图像HTTP触发器 - Azure Logic App Receive Image HTTP Trigger Azure Function 与逻辑应用重复触发器 - Azure Function with Logic App Recurrence trigger 使用托管身份从Logic App中通过身份验证调用Azure函数 - Calling an Azure Function with authentication from a Logic App using Managed Identities 从 Python 调用 Azure 逻辑应用程序端点的最佳方式是什么? - What is the best way of calling an Azure Logic App endpoint from Python? 从 azure function 创建 azure 逻辑应用程序 - Create azure logic app from azure function 保护访问以触发 azure 逻辑应用程序(HTTP 请求触发器) - Securing access to trigger a azure logic app (HTTP Request Trigger) 从逻辑应用触发 Azure 操作组 - Trigger Azure Action Group from a Logic App 是否可以在 Azure 逻辑应用程序工作流中触发 Azure function 和 Python 运行时? - Is it possible to trigger an Azure function with Python runtime inside a Azure Logic App workflow? 您可以使用Azure函数来触发Azure逻辑应用程序吗? - Can you use an Azure Function to trigger an Azure Logic App?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM