Creating libcurl http post form

后端 未结 2 1892
醉梦人生
醉梦人生 2021-01-15 17:21

How do i create a curl_form e.g to do a post on stackoverflow?

If i look in source of question form page, I see

2条回答
  •  太阳男子
    2021-01-15 17:36

    From the libcurl sample: http://curl.haxx.se/libcurl/c/postit2.html

    You don't manipulate curl_httppost directly. You'd write something like this to set the m-address field.

    CURL *curl;
    CURLcode res;
    
    struct curl_httppost *formpost=NULL;
    struct curl_httppost *lastptr=NULL;
    struct curl_slist *headerlist=NULL;
    static const char buf[] = "Expect:";
    
    curl_global_init(CURL_GLOBAL_ALL);
    
    curl_formadd(&formpost,
                 &lastptr,
                 CURLFORM_COPYNAME, "m-address",
                 CURLFORM_COPYCONTENTS, "your@mail.com",
                 CURLFORM_END);
    
    curl = curl_easy_init();
    headerlist = curl_slist_append(headerlist, buf);
    if(curl) {
        /* what URL that receives this POST */ 
        curl_easy_setopt(curl, CURLOPT_URL, "http://stackoverflow.com/someurl");
        if ( (argc == 2) && (!strcmp(argv[1], "noexpectheader")) )
          /* only disable 100-continue header if explicitly requested */ 
          curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headerlist);
        curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
        res = curl_easy_perform(curl);
    
        /* always cleanup */ 
        curl_easy_cleanup(curl);
    
        /* then cleanup the formpost chain */ 
        curl_formfree(formpost);
        /* free slist */ 
        curl_slist_free_all (headerlist);
    

提交回复
热议问题