We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SimpleHTTP http; char url[] = "http://www.google.com/images/srpr/logo11w.png"; printf("Requesting for %s ... ", url ); http.httpmethod( HTTP_REQ_METHOD_GET ); if ( http.request( url ) == true ) { printf("[ok.]\n"); }