RESTful Client API in C++

后端 未结 4 1664
深忆病人
深忆病人 2021-01-18 05:26

Is there any open source library available that implements RESTful Client(library for interpreting HTTP requests as REST service calls) in C++ ?

My requirement is to

4条回答
  •  清酒与你
    2021-01-18 06:04

    You need to parse XML. I suggest you try Qt C++ Toolkit it will give you a QHttp instance to make HTTP calls and QtXml module to parse the xml. This way you can create a C++ Rest Client.

提交回复
热议问题