Reputation: 6686
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.
Upvotes: 4
Views: 20242
Reputation: 19860
Use libCURL to get the actual JSON data. Then parse it with some C++ library like jsoncpp.
Upvotes: 8