Home Forum Software How to upload to uRadmonitor from (Arduino) ESP32? Reply To: How to upload to uRadmonitor from (Arduino) ESP32?

#28868
DonZalmrol
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…