Hi Guys,
I am looking for a very simple way to send a JSON post via HTTPS to a server.
I know that you can use the ArduinoJSON library and i have already
tried different samples, but they work unfortunately only with HTTP.
I have an ESP 8266 Node MCU V2 and
I'm looking for a sketch that shows me how I can do it with TLS.
On Linux, the call is easy:
curl -X POST -H "Content-Type: application / json" -d '{"uid": "B4A6D34C", "successfully": true}' https://hello.domain-testserver.com/pattern/public/index.php/api/testsystem
...how can I map that Call in the Arduino IDE?
Thank you!
Greetings from Germany!