Hey everyone,
I'm using an ehternet shield with an uno board to send some reports to a cloud application.
Here's a part of the code that i made in java to do that:
URLConnection cloudConnection = cloudServer.openConnection();
cloudConnection.setDoOutput(true);
cloudConnection.setRequestProperty("Content-Type",
"multipart/form-data;boundary="+boundary);
I want to know how to do the setRequestProperty method on arduino c/c+ language. Any thoughts?
Best regards