Hi guys.
last semester, i did send "get request" from my ethernet shield of arduino to server.
But.
this semester. i wanna send one of the value of variables using get request.
this following is my code that i made last semester.
if (client.connect(push_server, 80)) {
Serial.println("connecting...");
client.println("GET /pushingbox?devid=vC4B19AD9F539656 HTTP/1.1");
// if it is connected to server. then "devid=vC4.... " this value can be sent to server.
// But i want to send one of the variables.
client.println("Host: api.pushingbox.com");
client.println("User-Agent: arduino-ethernet");
client.println("Connection: close");
client.println();
SO. First of all. is it possible?
p.s) i am using arduino uno. and w5100 Ethernet shield.
Thank u for reading.