gpt4 book ai didi

azure - 如何在多个触发器上触发 Azure 逻辑应用程序?

转载 作者:行者123 更新时间:2023-12-03 03:09:56 24 4
gpt4 key购买 nike

我目前正在设计一个 Azure 逻辑应用程序,集成我们组织的 Sharepoint 和 CRM 端点。每当在共享点站点上创建新文件或修改现有文件时,我都需要执行相同的步骤集。目前,我只能在其中一个操作上触发应用程序,但不能同时在这两个操作上触发应用程序。我认为这是设计使然。但是有没有办法在这两个操作上触发逻辑应用程序?

最佳答案

您可以添加多个触发器,但不能通过 UI 添加。目前仅在代码 View 中支持此功能。
示例。洛杉矶的多个触发器

"triggers": {
"Recurrence": {
"recurrence": {
"frequency": "Minute",
"interval": 5
},
"type": "Recurrence"
},
"When_a_new_tweet_is_posted": {
"inputs": {
"host": {
"api": {
"runtimeUrl": "https://logic-apis-westus.azure-apim.net/apim/twitter"
},
"connection": {
"name": "@parameters('$connections')['twitter']['connectionId']"
}
},
"method": "get",
"path": "/onnewtweet",
"queries": {
"searchQuery": "#LogicApps"
}
},
"recurrence": {
"frequency": "Minute",
"interval": 3
},
"splitOn": "@triggerBody()?.value",
"type": "ApiConnection"
}
}

关于azure - 如何在多个触发器上触发 Azure 逻辑应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39897232/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com