创建libcurl http post表单 [英] Creating libcurl http post form

查看:564
本文介绍了创建libcurl http post表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何创建一个curl_form例如在stackoverflow上发布帖子?

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

<label for="display-name">Name</label>
                <input id="display-name" name="display-name" type="text" size="30" maxlength="30" value="" tabindex="105">
            </div>
            <div>
                <label for="m-address">Email</label>
                <input id="m-address" name="m-address" type="text" size="40" maxlength="100" value="" tabindex="106">
                <span class="edit-field-overlay">never shown</span>
            </div>
            <div>
                <label for="home-page">Home Page</label>
                <input id="home-page" name="home-page" type="text" size="40" maxlength="200" value="" tabindex="107">
            </div>

如何为 curl_httppost 结构?

推荐答案

从libcurl示例: http://curl.haxx.se/libcurl/c/postit2.html

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

您不会操作 curl_httppost 。您可以这样设置 m-address 字段。

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);

这篇关于创建libcurl http post表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆