Home › Forum › Software › How to upload to uRadmonitor from (Arduino) ESP32? › Reply To: How to upload to uRadmonitor from (Arduino) ESP32?
May 21, 2021 at 1:54 pm
#28868
Participant
Ha found the following culprit ‘:’
Original:
client.sendHeader(“X-User-id:“, USER_ID);
client.sendHeader(“X-User-hash:“, USER_KEY);
client.sendHeader(“X-Device-id:“, DEVICE_ID);
Changed to:
client.sendHeader("X-User-id", USER_ID);
client.sendHeader("X-User-hash", USER_KEY);
client.sendHeader("X-Device-id", DEVICE_ID);
In Wireshark I now see my x-headers being posted.
I still get an issue with the x-device-id, I reckon that still has to do with the number not being translated to HEX…