-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Closed
Description
I can't get any response.
WiFiClientSecure client;
...
if(client.connect("script.google.com", 443)) {
client.println("POST /macros/s/.../exec HTTP/1.1");
client.println("Host: script.google.com");
client.println("Content-Type: application/x-www-form-urlencoded");
client.println("Content-Length: 3");
client.println();
client.println("a=a");
client.print("\r\n\r\n");
while (!client.available()) { // loop forever
delay(50);
Serial.print(".");
}
while (client.available()) {
char c = client.read();
Serial.write(c);
}
client.stop();
}Voha888
Metadata
Metadata
Assignees
Labels
No labels