节点红色的卷曲命令

时间:2017-04-05 08:21:11

标签: curl node-red

有没有人可以建议我改变 curl 命令,例如“ curl ip:port / a / b -H myHeader1 -H myHeader2 -d”{... JSON FORMAT FILE ...}'“在 node-red 流程中返回JSON格式的回复?

1 个答案:

答案 0 :(得分:2)

HTTP Request节点可用于生成... http请求。

您可以向节点传递一个msg.headers属性,该属性包含要包含在请求中的HTTP标头,msg.payload将作为请求正文发送。

假设响应包含适当的content-type标头,生成的msg.payload将是解析为JavaScript对象的JSON。

您可以在Node-RED cookbook中看到更多节点示例:http://cookbook.nodered.org/http/