curl/docs/examples/http-post.c

60 lines
2.0 KiB
C
Raw Normal View History

/***************************************************************************
2004-11-22 09:41:36 -05:00
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
2002-01-10 04:00:02 -05:00
* \___|\___/|_| \_\_____|
*
2015-07-01 05:43:12 -04:00
* Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at https://curl.haxx.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
***************************************************************************/
2015-07-01 05:43:12 -04:00
/* <DESC>
* simple HTTP POST using the easy interface
* </DESC>
*/
2002-01-10 04:00:02 -05:00
#include <stdio.h>
#include <curl/curl.h>
int main(void)
{
CURL *curl;
CURLcode res;
2012-07-11 20:02:22 -04:00
/* In windows, this will init the winsock stuff */
curl_global_init(CURL_GLOBAL_ALL);
/* get a curl handle */
2002-01-10 04:00:02 -05:00
curl = curl_easy_init();
if(curl) {
/* First set the URL that is about to receive our POST. This URL can
just as well be a https:// URL if that is what should receive the
data. */
curl_easy_setopt(curl, CURLOPT_URL, "http://postit.example.com/moo.cgi");
/* Now specify the POST data */
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "name=daniel&project=curl");
/* Perform the request, res will get the return code */
res = curl_easy_perform(curl);
2012-07-04 11:03:52 -04:00
/* Check for errors */
if(res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
2002-01-10 04:00:02 -05:00
/* always cleanup */
curl_easy_cleanup(curl);
}
2012-07-11 20:02:22 -04:00
curl_global_cleanup();
2002-01-10 04:00:02 -05:00
return 0;
}