简体   繁体   English

Azure Logic App HTTP侦听不更新值

[英]Azure Logic App HTTP Listen Not updating values

The values never update, when i send the http requests from postman. 当我从邮递员发送http请求时,这些值永远不会更新。 I am using fake your json-schema to go from the schema and create the object but i cannot get the logic app trigger to accept the values. 我正在使用伪造的json模式从架构中创建对象,但是我无法获得逻辑应用程序触发器来接受值。 The logic app http listener is working and i get a good request but it doesnt listen :( 逻辑应用程序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"
}

is the schema and below is the object i am sending { "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" } 是架构,下面是我要发送的对象{ "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" }

all the values on the http input are "" http输入上的所有值都是“”

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM