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 Jso开发者_运维知识库n.
Use libCURL to get the actual JSON data. Then parse it with some C++ library like jsoncpp.
精彩评论