Making a GET or POST request from the core

Hi @manuelmasri,

A GET request should be really similar, just switch the method and include the parameters in the url instead of in the body, something like… (I haven’t tested this), where LIB_DOMAIN is a hostname from above:

client.connect(LIB_DOMAIN, 80);
client.println("GET /example.php?arg1=value&arg2=another HTTP/1.0");
client.println("Host: " LIB_DOMAIN);
client.println("Content-Length: 0");
client.println();