00001 /*************************************************************************** 00002 * _ _ ____ _ 00003 * Project ___| | | | _ \| | 00004 * / __| | | | |_) | | 00005 * | (__| |_| | _ <| |___ 00006 * \___|\___/|_| \_\_____| 00007 * 00008 * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. 00009 * 00010 * This software is licensed as described in the file COPYING, which 00011 * you should have received as part of this distribution. The terms 00012 * are also available at https://curl.haxx.se/docs/copyright.html. 00013 * 00014 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 00015 * copies of the Software, and permit persons to whom the Software is 00016 * furnished to do so, under the terms of the COPYING file. 00017 * 00018 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 00019 * KIND, either express or implied. 00020 * 00021 ***************************************************************************/ 00022 /* <DESC> 00023 * Simple HTTPS GET 00024 * </DESC> 00025 */ 00026 #include <stdio.h> 00027 #include <curl/curl.h> 00028 00029 int main(void) 00030 { 00031 CURL *curl; 00032 CURLcode res; 00033 00034 curl_global_init(CURL_GLOBAL_DEFAULT); 00035 00036 curl = curl_easy_init(); 00037 if(curl) { 00038 curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/"); 00039 00040 #ifdef SKIP_PEER_VERIFICATION 00041 /* 00042 * If you want to connect to a site who isn't using a certificate that is 00043 * signed by one of the certs in the CA bundle you have, you can skip the 00044 * verification of the server's certificate. This makes the connection 00045 * A LOT LESS SECURE. 00046 * 00047 * If you have a CA cert for the server stored someplace else than in the 00048 * default bundle, then the CURLOPT_CAPATH option might come handy for 00049 * you. 00050 */ 00051 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); 00052 #endif 00053 00054 #ifdef SKIP_HOSTNAME_VERIFICATION 00055 /* 00056 * If the site you're connecting to uses a different host name that what 00057 * they have mentioned in their server certificate's commonName (or 00058 * subjectAltName) fields, libcurl will refuse to connect. You can skip 00059 * this check, but this will make the connection less secure. 00060 */ 00061 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); 00062 #endif 00063 00064 /* Perform the request, res will get the return code */ 00065 res = curl_easy_perform(curl); 00066 /* Check for errors */ 00067 if(res != CURLE_OK) 00068 fprintf(stderr, "curl_easy_perform() failed: %s\n", 00069 curl_easy_strerror(res)); 00070 00071 /* always cleanup */ 00072 curl_easy_cleanup(curl); 00073 } 00074 00075 curl_global_cleanup(); 00076 00077 return 0; 00078 }