Question with HTTP client

2 things jump out

myVera.println("Host: ");

should be just

myVera.print("Host: "); 

and you MUST read the response before calling flush and stop.. even if you just throw it away. otherwise you will end up with a hard fault.

have a look at this post here for a good example of how to use the TCPclient.

2 Likes