在curl_easy_perform之后接收数据

发布于 2024-10-09 03:49:17 字数 472 浏览 7 评论 0原文

我有以下问题:如何在 char * 缓冲区中写入使用 http-response 返回的数据?我找到了几种方法:

  1. 使用 CURLOPT_WRITEDATACURLOPT_WRITEFUNCTION。但CURLOPT_WRITEDATA需要文件指针(FILE *)。在我看来,将 CURLOPT_WRITEFUNCTION 与回调函数一起使用似乎很奇怪......
  2. 使用 curl_easy_sendcurl_easy_recv。但在这种情况下,我需要用手编写所有 POST 标头...

还有其他更优雅的方法吗?例如,将 char * 缓冲区指针传递给某个函数以获取 http 响应。

I have the following question: how can i write data returning with http-response in char * buffer? I've found several approaches:

  1. use CURLOPT_WRITEDATA or CURLOPT_WRITEFUNCTION. but CURLOPT_WRITEDATA requires file pointer (FILE *). use of CURLOPT_WRITEFUNCTION with callback function seems to me as quirk...
  2. use curl_easy_send and curl_easy_recv. but in this case i'll need to write all POST headers with hands...

Is there some other, more elegant approach? e.g. pass char * buffer pointer into some function to get http response in.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情丝乱 2024-10-16 03:49:17

实际上 CURLOPT_WRITEDATA 和 CURLOPT_WRITEFUNCTION 可以与任何指针类型一起使用。只要您的函数与该指针类型兼容。

例如:

    ...
    client_t *client;
    CURL *conn;
    ...
    curl_easy_setopt(conn, CURLOPT_WRITEFUNCTION, read_data);
    curl_easy_setopt(conn, CURLOPT_WRITEDATA, client);
    ...

static size_t read_data(void *ptr,
                        size_t size,
                        size_t nmemb,
                        client_t *client)
{
     memcpy(client->data, ptr, size * nmemb);
     return size * nmemb;
}

Actually CURLOPT_WRITEDATA and CURLOPT_WRITEFUNCTION can be used with any pointer type. As long as your function is compatible with that pointer type.

For example:

    ...
    client_t *client;
    CURL *conn;
    ...
    curl_easy_setopt(conn, CURLOPT_WRITEFUNCTION, read_data);
    curl_easy_setopt(conn, CURLOPT_WRITEDATA, client);
    ...

static size_t read_data(void *ptr,
                        size_t size,
                        size_t nmemb,
                        client_t *client)
{
     memcpy(client->data, ptr, size * nmemb);
     return size * nmemb;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文