Related resources for API Development
  • DDoS Attacks and Prevention using .NET Core10/28/2024 6:30:12 AM. This article covers the basics of DDoS (Distributed Denial of Service) attacks and prevention methods in .NET Core. It explains how to identify DDoS symptoms and apply preventive techniques, including
  • Endpoint Explorer in Visual Studio 202210/28/2024 5:54:45 AM. Endpoint Explorer in Visual Studio 2022 is a powerful tool for developers to easily test, debug, and manage API endpoints directly within the IDE. It streamlines API development by allowing quick setu
  • Minimal APIs or Controllers in ASP.NET Core10/14/2024 5:56:00 AM. In ASP.NET Core, developers can choose between Minimal APIs and Controllers for building web APIs. Minimal APIs offer a lightweight, streamlined approach with simpler routing, while Controllers follow
  • Create Web API in MVC 610/8/2024 8:48:58 AM. Learn how to create a Web API using ASP.NET MVC 6 in this comprehensive guide. We’ll cover essential topics like setting up the MVC framework, building API controllers, implementing RESTful services,
  • C#.NET - Access OAuth REST Web API Method9/23/2024 5:23:38 AM. C#.NET applications can access OAuth-protected REST APIs. You'll obtain an access token through OAuth flow (often via a separate request) and include it in the authorization header of your HttpCli
  • API Versioning Best Practices in .NET 89/12/2024 10:48:15 AM. Learn how to implement API versioning in .NET 8 to manage changes and maintain compatibility. This article covers versioning strategies like URI Path, Query Parameter, Header, and Content Negotiation.
  • How to Create an NPM Package?9/9/2024 8:50:49 AM. Creating and publishing an NPM package involves initializing a project, writing code (e.g., an OTP generator), testing locally, and preparing for publication. Steps include configuring package.json, a
  • RESTful API Design with .NET8/29/2024 5:49:32 AM. Explore the principles of RESTful design and learn how to implement robust, scalable, and maintainable web APIs in a .NET environment. This guide covers key REST concepts like statelessness, client-se
  • PUT vs PATCH: Understanding the Differences with Examples8/14/2024 4:04:51 AM. Learn when to use PUT for full resource updates and PATCH for partial modifications. With practical examples, you'll understand their roles in RESTful APIs and best practices.
  • How to Upload a File to Amazon S3 with NodeJS8/6/2024 6:16:29 AM. Implementing pagination and filtering in an ASP.NET Core 8.0 API with Entity Framework Core (EF Core) is crucial for efficiently managing large datasets. This guide covers setting up the project, crea
  • ASP.NET Core Web API With Oracle Database And Dapper7/31/2024 4:04:02 AM. This guide explores the creation of a Web API using ASP.NET Core, integrating with an Oracle Database through the Dapper ORM. Learn how to set up a robust backend service, implement CRUD operations, a
  • PDF Generation in .NET Core 8.0 API7/11/2024 10:13:46 AM. Learn how to generate PDFs in a .NET Core 8.0 API using the DinkToPdf library. This guide covers project setup, adding DinkToPdf, configuring settings, creating endpoints, and testing your API.
  • Postman for WEBAPI testing Part I6/30/2024 7:00:26 AM. Learn how to set up Postman, create and manage HTTP requests, and test your APIs efficiently. Discover key features like collections, environments, and test scripts to streamline your API development
  • Implementing Model Binding in ASP.NET Core Web API6/10/2024 8:06:43 AM. Model binding in ASP.NET Core automates the conversion of HTTP request data into .NET objects, simplifying data transfer between client-side requests and server-side code. It supports various data sou
  • Developing API In .NET Core With GraphQL6/5/2024 8:14:10 AM. Developing API in .NET Core with GraphQL" involves leveraging the power of GraphQL to create efficient and flexible APIs in the .NET Core ecosystem. This approach enables developers to design a s
  • Seamlessly Integrate .NET Core API with Angular5/20/2024 11:20:56 AM. In this article, learn how to connect a .NET Core API to an Angular application. Follow a simple, step-by-step guide to set up the API, create an Angular service, and display API data in your app.
  • Understanding GraphQL: Revolutionizing API Development5/16/2024 4:30:00 AM. GraphQL has emerged as a powerful alternative to RESTful APIs, offering efficient data fetching for modern web applications. Delve into its history, implementation in C#, evolution, drawbacks, and con
  • How To Enable HTTPS In ASP.NET Web API5/7/2024 11:23:49 AM. In this article, you will see How we can enable https in ASP.Net Web API. We will start by discussing all the steps required to enable https in asp.net web API. And then we will discuss all the steps
  • Polymorphic serialization using System.Text.Json4/12/2024 5:50:15 AM. Polymorphic serialization is the process of serializing and deserializing objects of different types that share a common base type. This allows us to preserve the specific type information of each obj
  • Best Practices for Creating ASP.NET Core REST API using OpenAPI4/9/2024 5:44:39 PM. Learn best practices for developing ASP.NET Core REST APIs using OpenAPI. Follow Ziggy Rafiq's expert guidance to streamline your API development process and ensure optimal performance and scalabi
  • GraphQL In .NET Core Web API With Entity Framework Core - Part Three3/7/2024 8:58:59 AM. Explore GraphQL integration in .NET Core Web API using Entity Framework Core in Part Three of this series. Learn to efficiently query data with C# backend development, enhancing API capabilities.
  • Build ASP.NET Core API Using Existing Database2/28/2024 10:16:53 AM. I’m sharing a short overview of Asp.NET Core. The journey of .NET Core started with the purpose of Microsoft to build a common .NET base library that provides a common foundation to all its platforms.
  • How To Use Swagger With ASP.NET Core Web APIs2/21/2024 10:35:13 AM. Using Swagger with ASP.NET Core Web APIs facilitates automated API documentation generation and interactive testing. With Swashbuckle, developers can effortlessly integrate Swagger UI into their proje
  • Web API Development with ASP.NET Core: A Comprehensive Tutorial2/17/2024 3:13:59 AM. In this comprehensive tutorial, you'll learn how to create powerful and scalable RESTful APIs with ASP.NET Core. In this guide, developers will learn about routing, controllers, and middleware as
  • Efficient API Development Database Operations in ASP.NET Core Web Using Dapper and Stored Procedures 12/27/2023 4:28:51 PM. Employing Dapper in ASP.NET Core for database operations brings a streamlined approach to handling data, ensuring efficient and straightforward interactions. When complemented with stored procedures,
  • TODO application with CQRS Design Pattern within Nest JS12/3/2023 10:41:23 AM. In this article, we will discover the process of incorporating the CQRS design pattern into a Nest JS application. A detailed, step-by-step guide to its implementation.
  • ASP.NET Core Web API for CRUD Operations with MySQL9/25/2023 8:20:01 AM. Creating a CRUD (Create, Read, Update, Delete) API in ASP.NET Core with a MySQL database is a common scenario in web development. In this article, we'll walk through building a complete ASP.NET Co
  • Hexagonal Architecture in .NET (C#) API Development9/25/2023 6:13:49 AM. In this article, we delve into Hexagonal Architecture, a powerful pattern for creating flexible and maintainable software systems. We'll explore its principles and demonstrate its practical applic
  • API Documentation in ASP.NET Core Web API using Swagger/OpenAPI9/2/2023 7:25:39 AM. Creating comprehensive API documentation for an ASP.NET Core Web API using tools like Swagger/OpenAPI or NSwag is a crucial step in ensuring that your API is well-documented and easy for other develop
  • Creating Effective Pagination and Filtering Middleware for ASP.NET Core Web API8/25/2023 5:10:13 AM. By incorporating pagination and filtering with custom middleware, you've enhanced your ASP.NET Core Web API's performance and user experience. This methodology enables you to respond more effi
  • Building Simple and Organized APIs with Minimal APIs and MapGroup() in .NET 78/15/2023 8:23:26 AM. The article explores Minimal APIs in .NET 7, a lightweight way to build APIs with little overhead. It demonstrates creating an API that responds "Hello World!" to a GET request at the root U
  • Salesforce SOAP API: POST Request With SOQL Query Envelope [Standard SObjects]7/27/2023 11:11:56 AM. In this article, we will discuss the detailed steps on executing SOQL queries for Standard Salesforce SObjects using SOAP API Query Envelopes.
  • Salesforce SOAP API Authentication - Login Request7/21/2023 8:57:30 AM. This article is focused on the Authentication mechanism for Salesforce SOAP-based services.
  • ASP.NET MVC - REST Web API SQL Server Connection Using Entity Framework Database First Approach11/2/2020 6:02:29 AM. This article is about creation of REST Web API connection with SQL server Entity Framework Database First approach using ASP.NET REST Web API platform.
  • MySQL Data Access API Development Using Express.JS, Node.JS12/14/2017 12:25:22 PM. In this article, we are looking into introduction of Node.JS, Express.JS and then I am going to create Simple MySQL data access API using Express.JS, Node.JS.