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