GithubHelp home page GithubHelp logo

Missing documentation about curlcpp HOT 5 CLOSED

josephp91 avatar josephp91 commented on August 21, 2024
Missing documentation

from curlcpp.

Comments (5)

glaubitz avatar glaubitz commented on August 21, 2024 1

I think it would be better to leave this issue open until you have written the documentation, wouldn't it?

from curlcpp.

JosephP91 avatar JosephP91 commented on August 21, 2024

Hi @glaubitz
You could try something like this:

int main() {
    // Let's create an object which will contain a list of headers.
    curl_header header;
    // Easy object to handle the connection.
    curl_easy easy;

    // Add custom headers.
    std::string jsonInfo = "{\"username\":\"abc\",\"password\":\"abc\"}";
    header.add(jsonInfo);
    header.add("Content-type: application/json");

    // Add the headers to the easy object.
    easy.add<CURLOPT_HTTPHEADER>(header.get());
    // Your URL.
    easy.add<CURLOPT_URL>("http://localhost:10443/v0.1/metrics/windows/1442");
    // Custom request.
    easy.add<CURLOPT_CUSTOMREQUEST>("PUT");
    // You can choose between 1L and 0L (enable verbose video log or disable)
    easy.add<CURLOPT_VERBOSE>(0L);

    try {
        // Request execution
        easy.perform();
    } catch (curl_easy_exception error) {
        // If you want to get the entire error stack we can do:
        curlcpp_traceback errors = error.get_traceback();
        // Otherwise we could print the stack like this:
        error.print_traceback();
    }
    return 0;
}

Let me know if this works!

from curlcpp.

JosephP91 avatar JosephP91 commented on August 21, 2024

@glaubitz any news?

from curlcpp.

glaubitz avatar glaubitz commented on August 21, 2024

Hi Guiseppe!

Thanks for your suggestion, but I have already solved the issue by using curlpp instead.

I had to use the wrapper in a project and had to find a solution real quick since the whole project is going to be in production real soon and this particular part where curl is employed always had to be in a state were it could be demoed two weeks ago.

curlpp has examples and a usable documentation which helped me integrating it into my project real quick. I would therefore suggest to include some example code, too, and write some documentation so that other developers who want to integrate your library don't have to study the sources to figure out how to use curlcpp in their particular use case.

Thanks,
Adrian

from curlcpp.

JosephP91 avatar JosephP91 commented on August 21, 2024

Thanks for the advices :)

from curlcpp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.