REST Client Library in C

Is there a good C library that I can use in my client application to talk to REST servers?

+5
source share
1 answer

libcurl comes to mind since REST is based on basic HTTP requests.

Of course, this is just the starting point; you need to write a little logic on top of it. I'm not sure what you are looking for is the source of the solution, in which you can point it to the service descriptor and automatically create stubs, or you are just looking for connectivity.

+4
source

All Articles