在 Azure 逻辑应用程序中获取 HTTP 请求 headers

Get HTTP request headers in Azure Logic Apps

我正在尝试从我在 Azure 逻辑应用程序中发出的 HTTP 请求中获取特定的 header 值。相关逻辑如下所示:

如果我想得到一个特定的 header,我需要在 'value' 字段中输入什么,例如 'Set-Cookie'?

提前致谢。

您需要切换到代码视图并编写,

@triggerOutputs()?['headers']?['Set-Cookie']. 

这对您有用(作为获取 Content-Type 的示例)...

outputs('HTTP')['headers']?['Content-Type']

变量

结果