嗨,他有一个部署一些自定义连接器的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
门户中显示的输入
答案 0 :(得分:0)
似乎,在部署之后,旧的连接器已被缓存。删除并再次添加它即可。