TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About APIs
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Akhil Mittal (5)
Aman Gupta (4)
Ajay Kumar (4)
Sardar Mudassar Ali Khan (3)
Munib Butt (3)
Vinoth Xavier (2)
Tejas Agravat (2)
Chetan Sanghani (2)
Anupam Maiti (2)
Ayush Gupta (2)
Vithal Wadje (2)
Jobin S (2)
Ali Benchaaban (2)
Miguel Teheran (2)
Ravi Raghav (2)
Ramasagar Pulidindi (2)
Jay Krishnareddy (2)
Virendra Gour (2)
Baibhav Kumar (1)
Safyan Yaqoob (1)
Manoj Kalla (1)
Jeeva Subburaj (1)
Nimit Joshi (1)
Shilpa Tanwar (1)
Muhammad Asif (1)
Velladurai (1)
Muhammad Talha (1)
Thiago Vivas (1)
Rinki (1)
Sagar Pardeshi (1)
Vikas Singh (1)
Mobeen Rashid (1)
Pooja Lalit (1)
Pankaj Kumar Choudhary (1)
Delpin Susai Raj (1)
Mohamed Hasan (1)
Akshay Phadke (1)
Ashutosh Singh (1)
Jitendra Mesavaniya (1)
Siddharth Vaghasia (1)
Satheesh Palani (1)
Mohamed Azarudeen Z (1)
Jaimin Shethiya (1)
Ishika Tiwari (1)
John Kocer (1)
Harunraseed Basheer (1)
Thiyagu Baskaran (1)
Sandip Jadhav (1)
Tuhin Paul (1)
Kuppu Swami (1)
Vipul Malhotra (1)
Hamza Asal (1)
Bhavesh Raval (1)
Muhammad Omer Khan (1)
Tahir Ansari (1)
Jochen Bartlau (1)
Esamaldin Mohammed (1)
Satya Karki (1)
Prathap Reddy (1)
Simran Verma (1)
Md Sarfaraj (1)
Munesh Sharma (1)
CSharp TV (1)
Avirup Basu (1)
Puneet Kankar (1)
Kirtesh Shah (1)
Jorge Levy (1)
Gourav Jain (1)
Dhruvin Shah (1)
Atul Sharma (1)
Daniel Gomez (1)
Sameer Shukla (1)
Nanddeep Nachan (1)
Related resources for APIs
No resource found
Types of APIs and Essential API Testing Tools
11/18/2024 8:41:55 AM.
Learn about essential API testing tools such as Postman, SoapUI, and JMeter, which help ensure the functionality, performance, and security of APIs through effective testing and automation.
Minimal APIs or Controllers in ASP.NET Core
10/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
Power of Web APIs: 12 Essential APIs for Java Developers
10/11/2024 6:17:14 AM.
Staying updated with essential web APIs is vital for developers to build efficient, scalable, and user-friendly applications. This article explores key APIs, including Geolocation, Web Workers, and We
Importing .NET Core APIs into Postman
10/10/2024 5:42:24 AM.
Explore how to test, debug, and document your APIs effectively. From setting up Postman collections to handling HTTP requests and authentication, this guide simplifies API testing and integration.
Overview of Minimal API
10/1/2024 8:20:11 AM.
Minimal API in ASP.NET Core provides a streamlined approach to building HTTP APIs with minimal configuration. Introduced in .NET 6, it allows for lightweight API development without controllers, makin
Setting Up Kafka In Local using Docker
9/28/2024 5:01:04 AM.
Apache Kafka is a distributed streaming platform used to build real-time data pipelines and applications. It relies on Zookeeper for managing metadata and broker health.
JWT Token Authentication And Role Authorization Using .Net Core 6.0 Web APIs
9/26/2024 6:13:29 AM.
This post covers implementing JSON Web Tokens (JWT) for authentication in an ASP.NET Core Web API. It details creating a new project, using JWT for secure token generation, and implementing role-based
Kafka Terminologies and Client APIs
9/13/2024 8:52:21 AM.
Explore key Kafka terminologies like brokers, topics, partitions, and offsets, along with an overview of its core client APIs. Learn how the Producer, Consumer, Streams, and Connect APIs enable powerf
Build a Smart Private Chatbot with Semantic Kernel and APIs
9/12/2024 4:23:50 AM.
This guide covers integrating advanced NLP techniques and machine learning to create a secure, efficient, and customizable AI chatbot with robust data privacy.
Integrating Google Maps, Places, and Geocode APIs with ASP.NET MVC 5
8/14/2024 1:14:12 PM.
In this article you will learn how to Integrate Google Maps, Places, and Geocode APIs with ASP.NET MVC 5.
How Do We Create Custom APIs with Next.js?
8/8/2024 5:25:24 AM.
Next.js allows you to create custom APIs with API routes defined in the pages/api directory. You can handle various HTTP methods (GET, POST, PUT, DELETE), use query parameters, connect to databases (e
Microservices Architecture with .NET Core
7/17/2024 12:17:37 AM.
Microservices architecture, using .NET Core, enhances scalability, resilience, and maintainability by breaking down applications into independently deployable services. Each service manages its own da
Building RESTful APIs with ASP.NET Core
7/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
TaskCompletionSource in .NET to Convert Async Non Task to Async Task
7/9/2024 7:34:07 AM.
TaskCompletionSource<T> in .NET allows manual creation and control of tasks, enabling custom async patterns and adapting non-task-based APIs. With methods like SetResult, SetException, and SetCa
Consume API in Repository Design Pattern
7/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 Applications
7/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
Optimizing LINQ Queries in C# and .NET Core Web APIs
6/21/2024 7:21:52 AM.
LINQ in C# optimizes data querying with readable syntax, but inefficient use can impact .NET Core Web API performance. Strategies like early filtering and selective projections enhance efficiency. Def
ASP.NET Core Sample Website - Calculator
6/12/2024 10:29:15 AM.
This article demonstrates creating a Web Calculator with .NET Core, covering database setup, Azure hosting, ASP.NET Core features, controller setup, views, models, and enum operations. Explore step-by
ASP.NET Core : Basics And Its Features
6/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.
CSOM vs JSOM vs SSOM vs REST
6/6/2024 11:49:41 AM.
CSOM, JSOM, SSOM, and REST are SharePoint development models. CSOM & JSOM for client side, SSOM for server side, and REST for lightweight, platform-independent communication via HTTP methods. Each
Developing API In .NET Core With GraphQL
6/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
Securing ASP.NET Core APIs with Identity and JWT
5/30/2024 10:34:17 AM.
In this article, we'll learn how to implement robust authentication and authorization for your ASP.NET Core APIs using ASP.NET Core Identity and JSON Web Tokens (JWT). We'll go through by sett
RESTful Day #6: Request Logging And Exception Handing/Logging In Web APIs Using Action Filters, Exception Filters and NLog
5/24/2024 9:14:17 AM.
Day 6 of the RESTful journey focuses on robust request logging and exception handling in Web APIs. Employ Action Filters, Exception Filters, and NLog for comprehensive logging and error management, en
RESTful Day #3: Resolve Dependency of Dependencies Using Inversion of Control & Dependency Injection in ASP.Net Web APIs with Unity Container and Managed Extensibility Framework (MEF)
5/24/2024 8:58:56 AM.
Day 3 of RESTful learning dives into resolving dependencies of dependencies using IoC & DI in ASP.NET Web APIs. Employ Unity Container & MEF for seamless extension and management of components
RESTful Day #4: Custom URL Re-Writing/Routing Using Attribute Routes in MVC 4 Web APIs
5/24/2024 4:58:26 AM.
In Day #4 of your RESTful journey, delve into the power of custom URL re-writing and routing using attribute routes in MVC 4 Web APIs. Unleash the flexibility of tailored endpoints, optimizing your AP
RESTful Day 1: Enterprise Level Application Architecture With Web APIs Using Entity Framework, Generic Repository Pattern and Unit of Work
5/24/2024 4:57:55 AM.
Explore the intricacies of Web APIs, leverage Entity Framework for seamless data access, implement the efficient Generic Repository Pattern, and ensure transactional integrity with the Unit of Work pa
REST APIs Evolution and Best Practices for Scalable Web Services
5/24/2024 4:07:51 AM.
Discover essential strategies in REST API development with our comprehensive guide. Explore best practices for resource design, HTTP methods, security, versioning, documentation, error handling, and m
Webhooks vs APIs Comparative Analysis Benefits and Uses
5/17/2024 5:03:16 AM.
This article explores the history, need, evolution, drawbacks, and modern-day relevance of Webhooks and APIs in web development, focusing on implementation in C# using ASP.NET Core.
RESTful Day #5 - Security in Web API - Basic & Token Based Custom Authorization in Web APIs Using Action Filters
5/16/2024 5:48:56 AM.
Explore robust security measures for Web APIs in RESTful Day #5. Implement Basic and Token-based custom authorization seamlessly with Action Filters, fortifying your API against unauthorized access an
Asynchronous Video Live Streaming with ASP.NET Web APIs 2.0
5/16/2024 5:44:48 AM.
Experience seamless live video streaming using ASP.NET Web APIs 2.0, leveraging asynchronous processing for optimal performance. Deliver real-time video content with reliability and efficiency, enhanc
Mastering Microservices Architecture with C# and .NET
5/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
What Is $HTTP Service In AngularJS
5/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
Xamarin.Forms - Open App Store Or Play Store In XamarinApp
4/30/2024 9:34:20 AM.
Learn to develop Xamarin.Forms apps for Android and iOS, accessing filesystems, and distributing data files. Implement UI elements like buttons and images. Use Xamarin.Essentials to open Play Store o
Method Overloading In Web Services
4/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
Diagnostic And Performance Monitoring in .Net 4.0
4/22/2024 8:23:32 AM.
Explore .NET 4.0's enhanced performance monitoring capabilities, including application domain-level resource tracking for memory and processor usage. Utilize Hosting APIs and Event Tracing for Wi
Consuming ASP.NET WebService In AngularJS
4/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.
Email Scheduling with Hangfire in .NET Core Minimal APIs
4/19/2024 11:52:33 AM.
In modern web applications, sending recurring emails is a common requirement for tasks such as notifications, reminders, or scheduled reports. Hangfire is a popular library in the .NET ecosystem that
REST APIs: Principles, Components, and Advantages
4/19/2024 4:48:44 AM.
In today's interconnected digital world, the need for efficient communication between software systems has never been greater. In this article, we'll delve into the world of REST APIs, explori
Get And Create Google Calendar Events In .NET
4/12/2024 11:15:23 AM.
Manage Google Calendar events seamlessly in .NET using Google.Apis.Calendar.v3. Retrieve, create, update, and delete events with ease, integrating Google Calendar functionality into your .NET applicat
Sending Recurring Emails Using HangFire in .NET Core Minimal APIs
4/11/2024 10:46:17 AM.
Learn how to automate recurring email tasks using Hangfire in .NET Core Minimal APIs. Hangfire offers multi-threaded, scalable task scheduling, perfect for batch email notifications, database maintena
Consuming Web Service In an ASP.Net Web Application
4/11/2024 10:27:29 AM.
This article explains how to consume web service in an ASP.Net web Application. Here we will see how to add a Web Service Reference in the ASP.Net Web Application and how to call the Web Service metho
Getting Started With MicroServices
4/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
Client Scripts in ServiceNow- Simplified with Real-Time Use Cases
4/5/2024 8:50:33 AM.
From onChange to onLoad, discover the four key types of client scripts and how to use them effectively to enhance user experience and streamline platform functionality. Explore essential tips and best
Explanation of HttpClient in .NET Core
4/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.
Best Practices for Designing APIs in .NET
3/26/2024 11:55:39 AM.
This article provides a thorough overview of the fundamental principles, criteria, and concerns for creating APIs in.NET.
Deploying Web Apps and APIs with Visual Studio
3/22/2024 5:29:42 AM.
Deploying Web Apps and APIs with Visual Studio involves utilizing Visual Studio's built-in deployment features to efficiently publish your applications. You can configure various settings such as
Simplifying File Uploads with .NET Core 7 Minimal APIs
3/21/2024 8:59:44 AM.
Discover how .NET Core 7's Minimal APIs streamline file upload processes, enhancing development efficiency. Simplify backend tasks with minimalistic yet powerful approaches, optimizing file handli
How To Use Swagger With ASP.NET Core Web APIs
2/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
Rate limiting in Minimal APIs with .NET 8
2/20/2024 4:10:02 AM.
Explore rate limiting in .NET Core to manage incoming traffic, enhance performance, and defend against malicious activities. Test fixed window, concurrency, token bucket, and sliding window limiters i
Power of APIs in Data Engineering
2/16/2024 3:55:32 AM.
In this article you can discover the power of APIs in data engineering. From extracting weather data to streaming Twitter feeds, learn how APIs streamline processes and enable real-time analytics, wit
Getting Started with APIs and Handling JSON Data
1/29/2024 6:42:05 AM.
Learn the essentials of Python API interactions with a focus on Open Notify API. Explore JSON handling, API status codes, and practical examples.
Minimal API in .NET 8: A Simplfied Approach to Build Web APIs
1/17/2024 9:20:50 AM.
Experience the simplicity of ASP.NET Core with Minimal APIs in .NET 6. Explore advantages like conciseness, ease of use, and quick startup time, and delve into sample code and use cases.
How to Make REST APIs Idempotent?
1/16/2024 8:41:00 AM.
Some HTTP methods are by default Idempotent and some we need to make them Idempotent to avoid but obvious issues in our REST APIs
External Logging for APIs with Serilog
1/9/2024 7:34:44 AM.
With Serilog, logging for APIs and Windows Services becomes an effortless endeavor. By configuring Serilog to use external logging sources, you ensure that your application's behavior is well-docu
Handling HTTP Get Request Method in AngularJS Frontend and C# Backend
12/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
Choosing Between Controllers and Minimal API for .NET APIs
12/21/2023 11:02:57 AM.
Explore the dichotomy of .NET API development with Controllers and Minimal APIs. This guide provides insights and real-world examples, empowering developers to choose between structured versatility an
Using RESTSharp for CRUD Operations in ASP.NET Core Web API
12/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 APIs with Flask and flask_restful in Python
11/18/2023 7:26:35 AM.
This article explores the process of building robust APIs with Flask and its extension, flask_restful, in Python. It covers setting up flask_restful, creating a basic API, resource management, request
Securing Your .NET Core APIs
11/18/2023 6:19:41 AM.
This article explains how you can secure your .NET Core APIs with essential practices. It covers JWT authentication, role-based authorization, HTTPS implementation, input validation, and rate limiting
Unveiling the Elegance and Efficiency of Minimal APIs
10/31/2023 7:16:25 AM.
This article provides a clear and concise explanation of Minimal APIs, a programming approach that simplifies the creation of HTTP APIs in ASP.NET Core. The article explains the concept of Minimal API
Explore and Test Cosmos DB Rest APIs with POSTMAN
10/25/2023 9:38:57 AM.
Explore and Test Cosmos DB Rest APIs with POSTMAN
How To Create Window Service In .Net Core
10/12/2023 3:23:07 PM.
We are going to create Window Service with help of "Microsoft.Extension.Hosting (6.0)" And "Microsoft.Window.Extension.Hosting.WindowService" and others and step by step implement
How to Build APIs using ASP.NET Core, a clean architectural approach, and the decorator design pattern
10/10/2023 6:32:14 AM.
Implementing the Decorator Pattern in an ASP.NET Core Web API with Clean Architecture involves structuring your application into layers and using decorators to add functionality to specific methods or
NoSQL Databases for ASP.NET Core Web APIs
9/22/2023 6:12:13 AM.
Microsoft Power BI empowers developers to craft highly customizable visuals using Vega and Vega-Lite's declarative JSON syntax. Create custom visuals in Power BI with our step-by-step guide, inclu
Differences Between CQRS, MediatR, and CRUD
9/21/2023 10:35:46 AM.
Explore the differences between CQRS, MediatR, and CRUD in this insightful article. Learn when to use each technique, their unique benefits, and find scenarios where they shine in .NET development.
REST APIs vs. Web Services
9/20/2023 10:42:49 AM.
distinguishing between REST APIs and Web Services is crucial. While these terms are often used interchangeably, they represent distinct approaches to facilitating communication between applications. I
Building Robust ASP.NET Core Web APIs with CQRS and MediatR
9/19/2023 6:59:08 AM.
In this article, we'll delve into ASP.NET Core, a powerful framework for building web applications and APIs. We'll explore how to design APIs that are both scalable and maintainable using the
Scalable Event-Driven APIs with Azure Event Grid and Service Bus in ASP.NET Core
9/13/2023 10:37:28 AM.
In this comprehensive example, we covered all the essential components required for building an event-driven API using Azure Event Grid and Azure Service Bus. Keep in mind that the specific implementa
Using Langchain and OpenAI APIs in Python to Query Your Docs
8/23/2023 11:02:12 AM.
Using the APIs from OpenAI and the langchain project, it is quite easy to implement a bot that is fed with your documentation and other product information. The answers of the bot are then specific fo
Building Simple and Organized APIs with Minimal APIs and MapGroup() in .NET 7
8/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
Endpoints Explorer in Visual Studio 2022
6/1/2023 6:42:30 AM.
Let's review the new feature endpoints explorer in Visual Studio 2022
Build Minimal APIs In .NET 7 Using Entity Framework Core 7
5/24/2023 7:10:21 AM.
This article describes how we can build Minimal APIs in .NET 7 using Entity Framework Core 7 with an example and code details.
Azure Data Shares: Unlocking the Power of Data Collaboration
5/5/2023 4:45:10 AM.
Share data simply and safely from multiple sources with other organizations. Easily control what you share, who receives your data, and the terms of use. Data Share provides full visibility into your
Testing REST APIs From Visual Studio 2022
4/27/2023 5:59:44 AM.
Today, we will look into a very useful feature just introduced with Visual Studio 2022 version 17.5. In the past we would test our APIs using tools like Swagger or my favorite Postman.
Documenting API's Using Swagger
4/25/2023 9:42:58 AM.
Documenting API's using swagger step by step
Working with APIs Calls In React Native
4/16/2023 2:32:34 PM.
In today's world of mobile app development, working with APIs is a fundamental requirement. APIs allow developers to integrate data from various sources and services into their apps.
Create Websocket APIs in Golang
3/28/2023 4:39:13 AM.
Create Websocket APIs in Golang
FluentValidation In Minimal APIs In ASP.NET Core 7.0
3/9/2023 10:22:07 AM.
In this article we are going to learn how to implement FluentValidation to our model classes in ASP.NET core 7 with minimal APIs.
Breaking Your REST APIs To Make Them Stronger - Azure for Sure - S2 - Ep. 3
2/21/2023 11:03:52 AM.
In this session, you will learn the differences between Web, Microservice & Monolith APIs as well as mission vs non-mission critical APIs.
Calling Multiple APIs Using HttpClient And Polly
1/6/2023 9:10:04 AM.
In this article, you will learn about calling multiple APIs using HttpClient and Polly.
Develop RESTful APIs With Python And Flask Framework
12/29/2022 11:18:05 AM.
This article will guide you through the development of simple APIs in Python using the flask framework.
MVC Controllers Can Automatically Infer [FromServices] In .Net 7
12/27/2022 9:12:44 AM.
In.Net 7, MVC Controllers can automatically infer [FromServices].
CRUD Operations With Fake APIs In React
12/26/2022 4:15:56 AM.
In this article, you will learn about CRUD Operations with Fake APIs in React.
What's New In ASP.NET Core 7.0
12/22/2022 11:35:19 AM.
In this aricle, you will learn what's new in ASP.NET Core 7.0.
Clean Architecture With ASP.NET Core WebAPI
10/3/2022 8:53:18 AM.
Asp.net Core WebAPI - Clean Architecture, Clean Architecture With ASP.NET Core WebAPI
Consuming REST APIs In Golang
9/19/2022 6:46:19 AM.
In this article, you will learn how to consume REST APIs in Golang.
Static Web Apps With APIs With Azure Functions
8/25/2022 5:06:13 AM.
In this article, we are going to review how we can implement Back-End services in our Azure Static Web Apps with Azure Functions
Getting Started With Minimal API In .NET Core API
8/9/2022 10:36:51 PM.
In this article, we would talk about the new feature introduced in .NET Core 6.0, i.e., minimal APIs (API without using controllers).
Call Rest APIs From Power BI / Power Query
7/31/2022 11:42:38 PM.
Sometimes, we encounter a requirement where we need to call some sort of Rest APIs from Power BI Desktop. In this article, I will teach you a step by step procedure for calling Rest APIs from Power BI
Drag And Drop Data Between Two Tables In Angular Using HTML 5 Drag And Drop APIs
6/7/2022 2:46:58 PM.
In this article, you will learn how to drag and drop data between two tables in angular using HTML 5 Drag and Drop APIs.
Web API With ASP.NET 6 And MySQL
6/1/2022 12:27:21 PM.
In this article, you will learn about Web API with ASP.NET 6 and MySQL.
Can Azure Functions Replace Web API?
5/26/2022 4:27:11 PM.
Is it worth Migrating the ASP.Net Core Web API Project to Azure Functions? Learn here how and why to migrate.
OAuth2.0 Authorization With The Azure AD Client Credentials FLow To Secure APIs Of Azure API Management
5/25/2022 1:00:31 PM.
In this article, we learn how you can protect your APIs using OAuth2.0 Authorization with the Azure AD Client Credentials flow. When APIs on API Management consumed by other application(End User), we
Can Azure Function Replace Web API
5/23/2022 5:18:13 AM.
Is it worth Migrating the ASP.Net Core Web API Project to Azure Function.
How To Add APIs In API Management
5/19/2022 1:05:42 PM.
In this article, we will add product and then will add an API. Under the API we will add one POST operation that will call a backend service(external service or internal based on requirement). Also, w
Minimal APIs In .NET 6
5/18/2022 2:15:37 PM.
In this article, you will learn about minimal APIs in .NET 6.
How To Configure Swagger In Azure Functions APIs
5/17/2022 12:54:18 PM.
In this article, you will learn how to configure Swagger in Azure Functions APIs.
Instant APIs In .NET
5/11/2022 2:47:35 AM.
Let's learn how to use the concept of instant API in .NET to create API in minutes with some configuration
Monitoring APIs With Actuators
1/1/2022 4:47:34 AM.
The article explains what actuators are and how we should use them.
MS Teams Team Creation With Graph APIs From Graph Explorer
10/8/2021 11:41:14 AM.
In this article, you will learn about MS teams team creation with Graph APIs from Graph Explorer.