gpt4 book ai didi

azure-logic-apps - Azure逻辑应用程序: Get HTTP Request Header Key Value into Conditional Check

转载 作者:行者123 更新时间:2023-12-04 18:56:59 25 4
gpt4 key购买 nike

我已经在Azure门户中创建了一个Logic App。它由HTTP POST触发,在该POST中,我设置了一个名为“jmb_private_key”的 key 。在Logic App收到HTTP请求之后,我放置了一个条件,我想检查该键。

检查Header CONTAINS 'myvalue'不起作用。
我想检查Header.Keys['jmb_private_key'] EQUALS 'myvalue',但我不知道该怎么做。

enter image description here

当我检查Logic App的运行时,我看到传递了正确的JSON有效负载,但是没有满足条件,即使JSON中包含正确的值也是如此。

enter image description here

最佳答案

感谢@Thomas为以上评论提供了答案。

将Logic App Designer切换到“代码 View ”,然后将条件代码替换为以下内容:

            "expression": {
"and": [
{
"equals": [
"@triggerOutputs()?['headers']?['jmb_private_key']",
"yourkeyvalue"
]
}
]
},

关于azure-logic-apps - Azure逻辑应用程序: Get HTTP Request Header Key Value into Conditional Check,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50238995/

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