Edward83
Edward83

Reputation: 6686

HTTP Json requests in C++?

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

Answers (1)

BastiBen
BastiBen

Reputation: 19860

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

Upvotes: 8

Related Questions