我有一个 HTTP 侦听器,用于发送 JSON 帖子正文。
{
"recipient":"bob@example.com",
"subject":"this is a test subject",
"body":"this is a test body email"
}
我试图在下一个流程中提取这些单独的参数,但它却出错了!
我希望实现的结果是将“bob@example.com”作为下一步操作的输入
我试过像
"@{triggers().outputs.body.Content.recipient}"
和各种变化,但我怀疑我错过了一些东西!
编辑添加
我目前正在通过 Powershell 发送发布请求,尽管它最终会通过 c#
$a = @"
{"recipient":"bob@example.com","subject":"this is a test subject","body":"this is a test body email"}
"@
Invoke-WebRequest -Uri https://httplistenerc743421edf234899a1315aa38c6398bc.azurewebsites.net/listen -Method POST -Body $a