REST Client in C ++

Someone has successfully tried any C ++ REST library (client) in their corporate product. It can be a software stack assembly, but it should be able to run on all platforms, for example: Win, Linux, Solaris, AIX, HP-UX.

+4
source share
3 answers

I cannot recommend any integrated solution, but what you can do is use:

  • Transport: neon, serf or libcurl (all of them have advs and disadvantages)
  • XML parsing: libexpat or libxml2
  • JSON parsing: Jansson or JSON Spirit
+1
source

The C ++ REST SDK is an actively developed C ++ REST client that is currently supported on Windows, Mac OS X, iOS, and Android. It is also licensed under Apache License 2.0, which opens a number of settings in the library to suit your needs.

0
source

You can check the thin REST client for C ++ at https://github.com/mrtazz/restclient-cpp .

This is C ++ - a shell around a good and stable multi-protocol, multi-platform libcurl library.

0
source

Source: https://habr.com/ru/post/1445460/


All Articles