逻辑应用程序自定义连接器中的单独主体/标题

时间:2018-09-27 12:04:34

标签: azure azure-logic-apps arm-template

嗨,他有一个部署一些自定义连接器的ARM模板。我有一个名为Start的连接器,因为当我尝试使用下面的这段代码分别设置消息正文和标头时,它可以正常工作。但是,当我在以下连接器上执行相同的操作时,将Connector-Start假定为A,然后将其紧随连接器B。输入未在不同字段中显示。相反,它甚至不相关。谁能帮忙。

在连接器parameters中,这是第一个块

{
                    "name": "Body",
                    "in": "body",
                    "schema": {
                      "type": "object",
                      "properties": {
                        "MessageBody": {
                          "type": "object",
                          "description": "Message body passed to the http trigger"
                        },
                        "MessageHeader": {
                          "type": "object",
                          "description": "Message header passed to the http trigger"
                        }
                      },
                      "required": [
                        "MessageBody",
                        "MessageHeader"
                      ]
                    },
                    "description": "Message body to get properties from the message payload.",
                    "required": true
                  },

这是connector-A门户中显示的输入

enter image description here

1 个答案:

答案 0 :(得分:0)

似乎,在部署之后,旧的连接器已被缓存。删除并再次添加它即可。