2017-06-22 72 views
0

當我發送郵遞員的http請求時,這些值永遠不會更新。我正在使用假你的json模式從模式中去並創建對象,但我無法讓邏輯應用程序觸發器接受值。邏輯應用程序HTTP監聽工作,我也得到了良好的請求,但它不聽:(Azure Logic 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" 
} 

是架構及以下是我對HTTP輸入發送{ "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" }

所有的值對象的「」

+1

的東西,你可以檢查。您使用的是POST動詞夫婦嗎?你設置了「 Content-Type「-header到」application/json「你的要求? –

+0

那個w因爲它我忘記了內容類型... derp。作爲回答發佈,所以我可以標記它:) – user1552172

回答

0

你設置的「內容類型」 -header爲「application/JSON」您的要求?