首页 文章

Azure Logic App HTTP侦听不更新值

提问于
浏览
0

当我从邮递员发送http请求时,值永远不会更新 . 我正在使用假的你的json-schema来从模式中创建对象,但我无法获得逻辑app触发器来接受这些值 . 逻辑应用程序http听众正在工作,我得到一个很好的请求,但它不听:(

{
"properties": {
"Email": {
  "type": "string",
  "value": ""
},
"EmployeeId": {
  "type": "string",
  "value": ""
},
"FirstName": {
  "type": "string",
  "value": ""
},
"JobCode": {
  "type": "string",
  "value": ""
},
"LastName": {
  "type": "string",
  "value": ""
},
"Ledger": {
  "type": "string",
  "value": ""
},
"NTID": {
  "type": "string",
  "value": ""
},
"Title": {
  "type": "string",
  "value": ""
}
},
"required": [
"Email",
"EmployeeId",
"FirstName",
"LastName",
"Ledger",
"NTID",
"Title"
],
"type": "object"
}

是架构,下面是我发送的对象 { "Email": "in", "EmployeeId": "exercitation qui nulla anim Duis", "FirstName": "reprehenderit magna", "LastName": "dolore", "Ledger": "dolore occaecat deserunt", "NTID": "id nisi exercitation ut", "Title": "laboris veniam in voluptate", "JobCode": "laboris voluptate mollit" }

http输入上的所有值都是“”

1 回答

  • 0

    您是否根据请求将“Content-Type” Headers 设置为“application / json”?

相关问题