Skip to content
Raphael Kim edited this page Mar 31, 2014 · 5 revisions

Example : GET a file from HTTP server.

` #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");
}

}

`

Clone this wiki locally