Is there any way to view the exact calls Domoticz is receiving? Logs display only vague message like "Error: Error parsing http request address: <IP>"
I'm trying to send the data from ESP8266 via API using the request as below:
Code: Select all
http://<domoticzIP>:8080/json.htm?username=<hashedUsername>&password=<hashedPwd>&type=command¶m=udevice&idx=1&nvalue=0&svalue=8;8
At the same time the same call from my PC (in the same network as ESP8226) succeeds, sensor data gets updated:Error: Error parsing http request address: <myNetworkPublicIP>
Domoticz is running on an external server, accessible from the internet. Both devices (ESP and PC) are in the same local network.Status: Incoming connection from: <myNetworkPublicIP>
Domoticz Version: 2021.1 (build 13872) running in Docker container.
My suspicion is that the call from ESP is somehow malformed when sent, that's why I want to see more detailed logs.
Or maybe there's a different problem? Any ideas welcome!