Related resources for Restful API
  • Managing User Data in Azure AD with Microsoft Graph API11/5/2024 5:47:57 AM. Microsoft Graph API is a RESTful web API that provides access to Microsoft 365 services, enabling developers to manage user data in Azure Active Directory. It allows operations such as retrieving, cre
  • 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,
  • 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.
  • Making API Calls in Angular Using Services7/24/2024 9:26:51 AM. Learn to leverage Angular's HttpClient to communicate with RESTful APIs, handle HTTP requests and responses, and implement best practices for efficient and maintainable code.
  • Building RESTful APIs with ASP.NET Core7/16/2024 7:14:32 PM. In today's interconnected digital landscape, creating robust and efficient APIs is crucial for enabling seamless communication between applications. ASP.NET Core, the open-source framework from Mi
  • Consume API in Repository Design Pattern7/2/2024 8:57:02 AM. Learn how to effectively consume APIs using the Repository Design Pattern. This approach enhances code organization by separating data access logic into reusable repositories, promoting maintainabilit
  • Annotations used with Spring Boot Applications7/1/2024 5:26:46 AM. Spring Boot simplifies Java application development with powerful annotations like @SpringBootApplication, @RestController, and @Service. These annotations automate configuration, enable RESTful servi
  • CRUD Operation In Angular 66/18/2024 10:47:23 AM. Learn how to implement CRUD operations in Angular 6 effectively with this comprehensive guide. Discover how to create, read, update, and delete data using Angular's HTTP client to communicate with
  • ASP.NET Core : Basics And Its Features6/7/2024 7:14:36 AM. ASP.NET Core is a cross-platform, high-performance framework for building modern web applications. It offers robust features such as MVC architecture, dependency injection, and built-in security.
  • Building a RESTful API with Flask and Python5/28/2024 8:37:00 AM. Learn to build a RESTful API with Flask and Python, leveraging HTTP methods for CRUD operations. Flask's simplicity aids rapid API development. Set up the environment, define endpoints for employe
  • Alfresco Integration With .NET Using CMIS5/16/2024 5:55:34 AM. Learn how to integrate Alfresco, a powerful ECM platform, with .NET using CMIS (Content Management Interoperability Services). Discover the capabilities of CMIS to enable seamless connectivity between
  • Mastering Microservices Architecture with C# and .NET5/13/2024 8:35:13 AM. In this article, we'll delve into the principles of microservices architecture and explore how to implement it using C#, .NET Core, and cutting-edge technologies like Docker, Kubernetes, gRPC, and
  • Building CRUD Operations in .NET Core 8 with MongoDB5/9/2024 4:48:33 AM. Learn to create CRUD operations in .NET Core 8 Minimal API with MongoDB via Entity Framework Core. Build RESTful endpoints for seamless data interaction, leveraging ASP.NET Core's capabilities for
  • What Is $HTTP Service In AngularJS5/3/2024 8:59:52 AM. Learn about the $HTTP service in AngularJS, which facilitates making HTTP requests from the client side. Explore how to use $http for fetching data, sending data to servers, and handling responses asy
  • Entity Framework Core in .NET Core: MySQL Code-First Migration4/30/2024 9:15:07 AM. This article walks you through how to use EF Core 5.0 in .NET Core 3.1 to implement a code-first approach to create/update a MySQL database on Visual Studio 2019 for a RESTful API application.
  • Method Overloading In Web Services4/30/2024 7:24:19 AM. Method overloading in web services involves defining multiple methods with the same name but different parameters. This enables versatility and cleaner API design, allowing services to handle diverse
  • Consuming ASP.NET WebService In AngularJS4/22/2024 7:41:48 AM. Consuming ASP.NET WebService in AngularJS involves utilizing AngularJS's $http service to send HTTP requests to the WebService. This enables fetching, updating, or deleting data asynchronously.
  • CRUD Operations Using Web API And ReactJS4/15/2024 11:49:52 AM. Learn how to perform CRUD operations using a Web API with ReactJS. Explore creating, reading, updating, and deleting data through RESTful endpoints, integrating frontend React components with backend
  • Getting Started With MicroServices4/11/2024 6:17:13 AM. In this article, you will Embark on your journey into Microservices, the architecture revolutionizing modern software development. Explore scalability, distributed systems, RESTful APIs, and container
  • Explanation of HttpClient in .NET Core4/3/2024 10:41:08 AM. The HttpClient class simplifies making HTTP requests (like GET or POST) in your .NET Core applications. It handles connections, timeouts, and responses, letting you focus on the data you need.
  • DRY, YAGNI, KISS Engineering Principles2/19/2024 10:51:37 AM. In software development and engineering, certain guiding principles serve as beacons of efficiency and effectiveness. Among these principles, DRY, YAGNI, and KISS stand out as fundamental pillars that
  • Handling HTTP Patch Method in AngularJS Frontend and C# Backend1/12/2024 7:14:11 AM. Discover the power of the HTTP PATCH method with this tutorial, focusing on AngularJS frontend and C# backend integration. Uncover the nuanced approach of making partial updates to resources, as the A
  • Create a Powerful RESTful API for SQL Server CRUD Operations1/4/2024 7:57:08 AM. Discover the world of building simple and effective APIs that talk to SQL Server databases. Learn how to safely handle data, improve performance, and get hands-on with coding examples for each CRUD op
  • Handling HTTP Get Request Method in AngularJS Frontend and C# Backend12/26/2023 8:04:48 AM. This guide explores the utilization of HTTP GET request method within an AngularJS frontend and their corresponding processing and handling in a C# backend. It details how Get types of requests initia
  • Using RESTSharp for CRUD Operations in ASP.NET Core Web API12/19/2023 7:24:01 AM. Utilizing RESTSharp for CRUD operations in ASP.NET Core Web API offers a streamlined approach to interacting with APIs. This library simplifies HTTP requests and responses, allowing developers to focu
  • Building a Robust ASP.NET Core Web API with Singleton Design Pattern and Three-Tier Architecture10/4/2023 4:38:38 AM. This example provides a basic structure for a Three-Tier Architecture in an ASP.NET Core Web API, implementing a Singleton Design Pattern for the Data Access Layer. Remember to adjust the code based o
  • 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
  • Develop RESTful APIs With Python And Flask Framework12/29/2022 11:18:05 AM. This article will guide you through the development of simple APIs in Python using the flask framework.
  • Restful API In .NET Core Using EF Core And Postgres7/5/2022 4:37:34 AM. In this article, you will learn about Restful API in .NET Core using EF Core and Postgres.
  • A Structural Overview Of An API7/2/2022 5:36:24 PM. A Structural Overview Of An API.
  • RESTful API Additional Standards And Protocols7/9/2021 10:19:38 AM. In this article, I collected basic info about 4 related to RESTful API standards and protocols that are widely used, such as OData, JSON:API, JSON Schema, OpenAPI.
  • Restful API In ASP.NET: Introduction of REST & Web API1/8/2021 5:36:05 AM. In this article we will discuss about the Restful architecture and introduction of ASP.NET Web API.
  • Adding RESTful API Configuration Provider For Our ASP.NET Core Application4/20/2020 11:18:14 AM. This article showed you a simple solution of how to integrate RESTful APIs into the configuration system of ASP.NET Core.
  • How To Send Data From Android To SQL Server Using RESTful API3/18/2020 4:22:56 AM. In this article you will learn how to send data from Android to SQL Server using RESTful API.
  • ASP.NET Core Web API - Creating And Validating JWT (JSON Web Token)3/5/2020 8:52:48 AM. Creating & validating JSON Web Tokens is very straightforward in ASP.NET Core Web API. A few packages and lines of code is all we need to create JWT tokens and to validate a JWT bearer tokens.
  • Create RESTful API Using ASP.NET Core With Entity Framework Core2/8/2019 12:49:40 AM. From this article, you will learn how to create a RESTful API using ASP.NET Core with Entity Framework Core.
  • Consuming RESTful APIs In Xamarin Android11/29/2018 12:55:25 AM. In this episode, I will teach you how we can consume RESTful API's in Xamarin Android.
  • Test RESTful API Using SoapUI7/31/2018 11:10:49 AM. This article explains test web api and Soap web services using SoapUI tool.
  • Building A Restful API In ASP.NET7/19/2018 9:44:00 AM. Let’s have a quick review of ASP.NET MVC Architecture. So when the request arrives at our application MVC Framework hands off that request to an action in a controller, this action most of the time re
  • Developing RESTful API's in ASP.Net With Retrieve, Update And Delete Functions4/2/2018 1:09:37 AM. In this episode, i will write three function for Updating, Deleting and Retrieving feedback from Azure database. In the next video i will show you how to consume this RESTful API in Xamarin Android.
  • Developing RESTful API in ASP.Net With Add Method3/30/2018 12:27:20 AM. In this episode, I am gonna teach you how we can develop RESTful API in Asp.Net. In the Next Video i will show you how to consume this RESTful API in Xamarin Android.
  • Routing In RESTful APIs Using .NET Core8/28/2017 12:03:38 PM. When it comes to listing best practices for REST APIs, the mechanism Routing always has its place on top of the stack. Today in this article will dirty our hands on Routing concepts with REST (web) AP
  • Check performance Testing Of A RESTful API Using JMeter5/25/2016 12:54:14 PM. In this article we will learn how we can use JMeter with Web API and check performance testing of a-restful api using JMeter.
  • RESTful API With Express-js And Mongodb - Part Two4/28/2016 12:18:32 PM. Here is a step by step guide on how to build RESTful APIs in node-js using express-js and mongodb. It covers routing, middleware, app booting and logging.
  • Restful API In ASP.NET: Getting Started1/17/2016 12:23:47 PM. In this article series we will learn to create Restful API that can be consumed by multiple clients in ASP.NET. In this article we will learn the basic infrastructure of API.
  • Backbone.JS Model12/25/2013 7:57:26 PM. In this article we will discuss the Backbone Model.