I am trying to use HomeSeer with node-red, which is installed on the same system as HomeSeer. To configure the HomeSeer plugin in node-red, I created a webhook in HomeSeer. In node-red, it works perfectly. For example, when I turn on a z-wave switch, the status on node-red is instantly updated. So the node-red plugin is working perfectly.
My problem is that I am trying to set up a second webhook to node-red using the HTTP In block (POST) to receive the raw data from HomeSeer. I am doing this to programmatically parse out device update information to log to influxdb. If I add a new device to homeseer, I don't want to have to make changes in the node-red workflow, which the plugin would require. I created another webhook in Homeseer (http://192.168.0.41:1880/hs4) and in a node-red flow, I created an HTTP In (POST) block with /hs4
Debugging the msg.payload output reveals SOME updates from HomeSeer, specifically some of my z-wave power meters. But if I turn on/off a switch in HomeSeer, nothing is sent to this second webhook. Any ideas why? I opened a case, but HomeSeer support suggested I post here. Why would the plugin work fine but a standard POST input block not work correctly?
My problem is that I am trying to set up a second webhook to node-red using the HTTP In block (POST) to receive the raw data from HomeSeer. I am doing this to programmatically parse out device update information to log to influxdb. If I add a new device to homeseer, I don't want to have to make changes in the node-red workflow, which the plugin would require. I created another webhook in Homeseer (http://192.168.0.41:1880/hs4) and in a node-red flow, I created an HTTP In (POST) block with /hs4
Debugging the msg.payload output reveals SOME updates from HomeSeer, specifically some of my z-wave power meters. But if I turn on/off a switch in HomeSeer, nothing is sent to this second webhook. Any ideas why? I opened a case, but HomeSeer support suggested I post here. Why would the plugin work fine but a standard POST input block not work correctly?
Comment