#apis
Read more stories on Hashnode
Articles with this tag
Most APIs follow a simple pattern. The client sends a request. The server does some work. The server sends back a response. This works well for fast...
When developing HTTP APIs, providing consistent and informative error responses is crucial for a smooth developer experience. Problem Details in...
As a .NET developer, I've spent countless hours working with external APIs. It's a crucial part of modern software development, but let's be honest -...
Caching is one of the simplest techniques to significantly improve your application's performance. It's the process of temporarily storing data in a...
Modern web applications need to serve increasing numbers of users and handle surges in traffic. When a single server reaches its limits, performance...
Delegating handlers are like ASP.NET Core middleware. Except they work with the HttpClient. The ASP.NET Core request pipeline allows you to introduce...