Hi !
I recently started to explore the possibilities of creating my own API and so far, it is pretty much simple in Python and C#; that's why I wa...
For further actions, you may consider blocking this person and/or reporting abuse
I ended up going with a C# API in one of my projects, more so out of it's ease of authentication/authorization with Active Directory.
I found the .NET Web API framework really easy to use, but as Meghan mentioned, nothing is too "minimal" around here.
Does it need to use socket? Even for C programming, writing an API using sockets can soon become non-portable and painful. I'd suggest using something like mongoose for C or Poco if you can stretch to C++ (the "other" poco if you're coming from C# ;)). The poco project has a hello world style web app example right on it's home page.
I would absolutely love to. Unfortunately it seems that "try it the way we teach it" instead of "do it in the most elegant way or with the most relevant tools" is not a very common practice in CS here š
Thank you so much !
I will build my researches around this, thank you for your time !!
Nothing in C is minimalist.
True ahah
I will give it a look, thanks !
This is maybe a little of topic. But Ms build a really powerful rest framework in cpp. Maybe you can draw some inspiration from there