HTTP Status Codes in Web API August 21, 2026 malekimtiyajmca@gmail.com Use 2xx/4xx/5xx intentionally for clients. Read more →
Routing and Attributes in Web API August 21, 2026 malekimtiyajmca@gmail.com Use [Route], [HttpGet], and constraint templates. Read more →
POST API in ASP.NET August 21, 2026 malekimtiyajmca@gmail.com Create resources and return 201 with Location when appropriate. Read more →
PUT API in ASP.NET August 21, 2026 malekimtiyajmca@gmail.com Replace resources idempotently with PUT. Read more →
Creating a Web API August 21, 2026 malekimtiyajmca@gmail.com Scaffold with dotnet new webapi and explore WeatherForecast sample. Read more →
HTTP Methods in Web API August 21, 2026 malekimtiyajmca@gmail.com Map actions to GET/POST/PUT/PATCH/DELETE correctly. Read more →
GET API in ASP.NET August 21, 2026 malekimtiyajmca@gmail.com Return collections/items with proper 200/404 handling. Read more →
Authorization in ASP.NET Core August 21, 2026 malekimtiyajmca@gmail.com Protect endpoints with [Authorize] and policies. Read more →
ASP.NET Core Identity August 21, 2026 malekimtiyajmca@gmail.com Manage users, passwords, roles, and lockout with Identity. Read more →
JWT Authentication in ASP.NET Core August 21, 2026 malekimtiyajmca@gmail.com Issue and validate JWTs for API clients. Read more →