HTTP Json requests in C++?

17,311

Use libCURL to get the actual JSON data. Then parse it with some C++ library like jsoncpp.

Share:
17,311

Related videos on Youtube

Edward83
Author by

Edward83

Updated on May 12, 2022

Comments

  • Edward83
    Edward83 almost 2 years

    How to make HTTP Json requests in C++? Any library? Under "HTTP Json request" I mean make POST with Json object as data and receive result as Json.

    • Ignacio Vazquez-Abrams
      Ignacio Vazquez-Abrams over 13 years
      cURL and whatever json.org has for C++.
    • Matteo Italia
      Matteo Italia over 13 years
      Why the close vote? Ok, the question may be expanded a little, but I don't think that "It's difficult to tell what is being asked here".