Self Descriptive HTTP API in ASP.NET Core: Object as Resource
In my opening post I went over some of the issues I encountered when initially developing an HTTP API. In this post I’m going to cover some of those pain points and what I think the solution was. Objects The first pain point revolves around the idea of your HTTP API returning objects. Meaning you serialize an object to JSON and return to the client. This seems pretty typical. Almost every example you find in regards to Web API describes this behavior. Here’s an example of what this looks like: View the code on Gist. We’re doing nothing more than… Read More »Self Descriptive HTTP API in ASP.NET Core: Object as Resource