Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use libcurl POST data and upload files

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article focuses on "how to use libcurl POST data and upload files", interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Now let the editor take you to learn how to use libcurl POST data and upload files.

For generality, the contents of the file are read into the fc variable, where fclen is the length of the fc. Fc can also be anything else. Curl is the libcurl handle. The demo omits many obvious steps.

1. Ordinary post request. Here fc is encoded with curl_easy_escape.

Std::string data ("req=plain")

Data.append (& file=)

Char * efc = curl_easy_escape (curl, fc, fclen)

Data.append (efc)

Curl_free (encoded)

Curl_easy_setopt (curl, CURLOPT_URL, PURGE_URL)

Curl_easy_setopt (curl, CURLOPT_POST, 1L)

Curl_easy_setopt (curl, CURLOPT_POSTFIELDS, data.c_str ())

Curl_easy_setopt (curl, CURLOPT_POSTFIELDSIZE, data.size ())

2. Multipart/formdata request

Struct curl_httppost * formpost = 0

Struct curl_httppost * lastptr = 0

Curl_formadd (& formpost, & lastptr, CURLFORM_PTRNAME, "reqformat", CURLFORM_PTRCONTENTS, "plain", CURLFORM_END)

Curl_formadd (& formpost, & lastptr, CURLFORM_PTRNAME, "file", CURLFORM_PTRCONTENTS, fc, CURLFORM_CONTENTSLENGTH, fclen, CURLFORM_END)

Curl_easy_setopt (curl, CURLOPT_URL, URL)

Curl_easy_setopt (curl, CURLOPT_HTTPPOST, formpost)

Curl_easy_perform (curl)

Curl_formfree (formpost)

3. Multipart/formdata request. Do not read the file into fc. Other steps are the same.

Curl_formadd & formpost, & lastptr, CURLFORM_PTRNAME, "file", CURLFORM_FILE, "/ path/filename", CURLFORM_END)

4. Upload files via put

Curl_easy_setopt (curl, CURLOPT_UPLOAD, 1L)

Curl_easy_setopt (curl, CURLOPT_PUT, 1L)

Curl_easy_setopt (curl, CURLOPT_READDATA, fp); / / FILE * fp = fopen ("/ path/filename")

Curl_easy_setopt (curl, CURLOPT_INFILESIZE_LARGE, fsize); / / fsize = sizeof / path/filename

5. Send your own Header

Struct curl_slist * slist = 0

Slist = curl_slist_append (slist, "Blog-X-User: username")

Slist = curl_slist_append (slist, "Blog-X-Signature: signature")

Curl_easy_setopt (curl, CURLOPT_HTTPHEADER, slist)

Curl_slist_free_all (slist)

At this point, I believe you have a deeper understanding of "how to use libcurl POST data and upload files". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report