Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1037455
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:51:14+00:00 2026-05-16T14:51:14+00:00

I would like to send an http post request in c++. It seems like

  • 0

I would like to send an http post request in c++. It seems like libcurl (Curlpp) is the way to go.

Now, here is a typical request that am sending

http://abc.com:3456/handler1/start?<name-Value pairs>

The name values pairs will have:

field1: ABC
field2: b, c, d, e, f
field3: XYZ

etc.

Now, I would like to know how to achieve the same using curlpp or libcurl.
Code snippets will really help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T14:51:14+00:00Added an answer on May 16, 2026 at 2:51 pm

    Don’t have experience with Curlpp but this is how I did it with libcurl.

    You can set your target url using

    curl_easy_setopt(m_CurlPtr, CURLOPT_URL, "http://urlhere.com/");
    

    POST values are stored in a linked list — you should have two variables to hold the begin and the end of that list so that cURL can add a value to it.

    struct curl_httppost* beginPostList;
    struct curl_httppost* endPostList;
    

    You can then add this post variable using

    curl_formadd(&beginPostList, &endPostList, CURLFORM_COPYNAME, "key", CURLFORM_COPYCONTENTS, "value", CURLFORM_END);
    

    Submitting then works like this

    curl_easy_setopt(m_CurlPtr, CURLOPT_POST, true);
    curl_easy_setopt(m_CurlPtr, CURLOPT_HTTPPOST, beginPostList); 
    curl_easy_perform(m_CurlPtr);
    

    Hope this helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Ideally, I would like to send an HTTP Request using POST to the Push
I would like to write an HTTP server that answer to request using a
Rails 3 question. If i send a request like this PUT http://myapp/posts/123?post [title]=hello then
I would like to send a POST request to a web server from a
The question asked here: How can I send an HTTP POST request to a
I am currently programming an application that needs to send an http Post request
I would like to send a html string with a GET request like this
I have completed my program and would like to send that program in its
I know that I can have some HTTP request, say post , for some
I'm trying to send a HTTP POST request to a Google server and get

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.