Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

REST client library in C

Tags:

rest

c

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

like image 767
Sankar Avatar asked Oct 08 '22 11:10

Sankar


1 Answers

libcurl comes to mind, as REST is based around basic HTTP requests.

Of course this is just a starting point; you'd need to write a little logic on top of it. I'm not sure if what you're looking for is a source-generating solution where you can point it at a service descriptor and have stubs produced automatically, or whether you're just looking for connectivity.

like image 67
Omaha Avatar answered Oct 13 '22 10:10

Omaha