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 Authorization
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (12)
Jignesh Trivedi (5)
Sarathlal Saseendran (5)
Ashutosh Singh (4)
Shilpa Tanwar (3)
Ayush Gupta (3)
Asma Khalid (2)
Chetan Sanghani (2)
Farhan Ahmed (2)
Vikas Singh (2)
Mayooran Navamany (2)
Vikas Hooda (2)
Nimit Joshi (2)
Simran Verma (2)
Ajay Kumar (2)
Avinash Kunnure (2)
Jay Krishnareddy (2)
George (2)
Jalpa Dhola (1)
Vishal Yelve (1)
Devesh Omar (1)
Tejas Agravat (1)
Atul Sharma (1)
Chethan N (1)
Mohamed Shifan (1)
Mukesh Kumar (1)
Vishal Joshi (1)
Raj Kumar (1)
Akhil Mittal (1)
Vidya Vrat Agarwal (1)
Gajendra Jangid (1)
Thiago Vivas (1)
Vignesh Mani (1)
Raveena Attri (1)
Syed Shanu (1)
Mudita Rathore (1)
Ankit Vaidya (1)
Bilal Shahzad (1)
Sundaram Subramanian (1)
Ziggy Rafiq (1)
Veerendra Annigere (1)
Shashangka Shekhar (1)
Suraj Sahoo (1)
Muhammad Asif (1)
Prasad (1)
Anupam Maiti (1)
Jithu Thomas (1)
Cr Bhargavi (1)
Jay Pankhaniya (1)
Sriram Kumar Mannava (1)
Shakti Singh Dulawat (1)
Rinki (1)
Usama Shahid (1)
Waqas Ahmed (1)
Vinay Ayinapurapu (1)
Mohammad Naeem (1)
Virendra Gour (1)
Abhijeet Jadhav (1)
Habibur Rony (1)
El Mahdi Archane (1)
Ish Bandhu (1)
Priyanka K S (1)
Related resources for Authorization
No resource found
Difference Between Delegated and App Only Access
10/29/2024 9:39:47 AM.
Delegated access allows an application to act on behalf of a signed-in user, requiring user authentication and permission via OAuth 2.0, while app-only access enables an app to operate independently w
Explaining IAuthorizationFilter in .NET Core
10/27/2024 12:10:00 PM.
In this article, we delve into the IAuthorizationFilter interface in .NET Core, exploring its role in implementing authorization logic for web applications. We cover how to create custom filters, mana
Customizing HTTP Headers with Middleware in ASP.NET Core
10/12/2024 4:26:09 AM.
In this article, we explore how to modify HttpResponse using custom middleware in ASP.NET Core. We create a custom middleware that injects headers into the response. By adding conditions, specific API
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
API Versioning and Enable Authorization in Swagger UI .NET Core
9/25/2024 9:05:09 AM.
In this article, we explore API versioning and how to enable authorization in Swagger UI for a .NET Core Web API. We’ll discuss best practices for managing API versions, ensuring backward compatibilit
Claim Based And Policy-Based Authorization With ASP.NET Core 2.1
9/23/2024 9:48:11 AM.
Authorization is the process of determining if a user can access system resources. Claim-based authorization checks specific user claims (e.g., "DateOfJoining" or "IsAdmin") for ac
Role Base Authorization In ASP.NET Core 2.1
9/23/2024 9:34:36 AM.
In this article, we explore Role-Based Authorization in ASP.NET Core 2.1, explaining how to secure applications by assigning user roles and managing access control.
Integrate Azure AD OAuth2 SSO Authentication and RBAC for Kafka-UI
9/23/2024 7:29:57 AM.
This article explores the integration of Azure Active Directory (AD), OAuth2, and Single Sign-On (SSO) for secure authentication and Role-Based Access Control (RBAC) for authorization within the Prove
C#.NET - Access OAuth REST Web API Method
9/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
Deploy Internet Information Services (IIS) on Windows Server
8/12/2024 11:13:33 AM.
Internet Information Services (IIS) is a Microsoft web server on Windows Server, used to host and manage websites and web applications. It supports various web technologies like HTML, ASP.NET, and PHP
Implementing JWT Authentication in a Next.js Application
8/7/2024 11:43:29 AM.
Learn how to implement JWT authentication in a Next.js application with this step-by-step guide. Covering project setup, installing necessary packages, creating utility functions for JWT and password
Creating Custom Authorization Policy Provider In ASP.NET Core
8/7/2024 10:46:39 AM.
Learn how to implement custom authorization policies in ASP.NET Core using IAuthorizationPolicyProvider. Discover how to create policies dynamically based on runtime information, register them with a
Handling Authentication and Authorization in Next.js
8/7/2024 6:17:20 AM.
Authentication and authorization are crucial for securing web applications. Next.js offers several strategies and libraries to manage user authentication and authorization effectively. This guide cove
Overview Of Identity In ASP.NET Core 2.0
8/2/2024 4:55:35 AM.
It is a membership system that allows us to add login functionality to our application. User may create account and login using credential or can use external login provider such as Google, Microsoft
Authorization In Razor Pages ASP.NET Core
7/31/2024 4:00:51 AM.
Learn how to implement authorization in ASP.NET Core Razor Pages using AddRazorPagesOptions. This guide covers configuring access controls with methods like AuthorizePage, AuthorizeFolder, and AllowAn
How to Implement Role-Based Access Control in Next.js?
7/24/2024 9:39:14 AM.
Implement Role-Based Access Control (RBAC) in a Next.js app to manage user permissions and restrict access based on roles. Define roles in your database, assign them during registration, and use Highe
Security Best Practices in ADO.NET
7/23/2024 3:51:46 AM.
ADO.NET is a powerful data access technology in the .NET framework, enabling developers to interact with databases. This article explores best practices for protecting sensitive data, preventing SQL i
Authentication and Authorization in ASP.NET Core
7/16/2024 7:21:48 PM.
Learn about implementing robust security in ASP.NET Core with a focus on authentication and authorization. This guide covers ASP.NET Core Identity, claims-based and role-based authorization, JWT, OAut
Authentication And Authorization In ASP.NET Core MVC Using Cookie
6/20/2024 10:12:07 AM.
Security is the main concern of modern applications because anyone can steal your data if it is not secured. So, if you are going to create an application where the data security is a primary concern,
Authentication And Authorization In MVC
6/14/2024 10:41:40 AM.
This article delves into authentication and authorization concepts within ASP.NET MVC applications. It explains the crucial difference between authentication (validating user identity) and authorizati
Custom Authorization Filter In MVC With An Example
6/14/2024 10:41:04 AM.
Learn how to implement custom authorization filters in ASP.NET MVC using Entity Framework and SQL Server. This tutorial covers creating roles and users, using custom authentication, and controlling a
Preventing CSRF Attacks in an ASP.NET Core MVC
6/13/2024 7:37:52 AM.
Cross-Site Request Forgery (CSRF) is a type of attack that can force a user's browser to send unwanted requests to a web application on which the user is authenticated, potentially leading to unin
Mongo DB Authentication and Authorization on Windows
6/10/2024 11:55:01 AM.
Dive deep into the world of MongoDB authentication. Whether you're a beginner or an experienced developer, this comprehensive guide will teach you everything you need to know about securing your M
Understanding OAuth 2.0 Authorization Code Grant Types
5/31/2024 5:31:24 AM.
In this article, we will learn OAuth 2.0's Authorization Code Grant Type, a core component for securing web applications. Learn how this protocol facilitates secure token exchange between clients
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
OAuth: Revolutionizing Access Delegation in Web Services
5/27/2024 9:18:32 AM.
OAuth (Open Authorization) is a secure, open standard for access delegation, allowing websites or applications to access user information without exposing credentials, enhancing security, control, and
Implementing Google OAuth in React.js
5/25/2024 11:50:21 AM.
Implementing Google OAuth in React.js enables secure user authentication by integrating Google's OAuth 2.0 authorization mechanism. This guide covers the steps to set up OAuth in a React applicati
JWT (JSON Web Token): The Future Of Secure Data Transfer
5/24/2024 5:13:43 AM.
JSON Web Tokens (JWTs) are a compact, secure method for representing claims between parties, widely used for session management and data transfer since their introduction.
Authorization In Web API
5/17/2024 11:01:42 AM.
Learn how to implement robust authorization mechanisms in your Web API to secure endpoints and control access. Explore techniques like token-based authentication, OAuth, JWT, and role-based access con
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
Understanding Windows Authentication in Detail
5/14/2024 11:29:31 AM.
Windows Authentication is a mechanism to authenticate a user. This article explains Windows Authentication in details including Basic Authentication, Digest Authentication, Integrated Windows Authenti
Authentication and Authorization in Angular and C#
5/14/2024 4:59:27 AM.
Implementing authentication and authorization in an Angular app with C# backend involves configuring JWT tokens, authentication controller, and role-based authorization. Here's a step-by-step guid
Road To AZ-204 - Implement User Authentication And Authorization
5/13/2024 4:17:54 AM.
This article's intention is to explain the main skills measured in this sub-topic of the AZ-204 Certification. OAuth2, Shared Access Signatures, Azure AD, Role-Based Access controls are the main c
Role Based Authorization In Blazor
5/9/2024 10:24:11 AM.
Role-Based Authorization in Blazor enables access control based on user roles. By defining roles and policies, specific functionalities or resources can be restricted to users with certain roles. Blaz
Create Identity In Simple Ways Using ASP.NET MVC 5
5/6/2024 11:24:49 AM.
ASP.NET MVC 5 simplifies identity creation through built-in features for authentication and authorization. It offers straightforward methods for user management, including registration, login, and pas
Implementing Policy-Based and Role-Based Authorization in .NET Core
5/6/2024 11:19:28 AM.
In this article, we’ll explore how to set up policy-based authorization and role-based authorization in a .NET Core application. We’ll cover key components such as authentication configuration, defaul
Unlocking the Power of Linux File Permissions
5/6/2024 11:13:29 AM.
In this article, we will Explore the potency of Linux file permissions, ensuring security and control over system resources. Master chmod, user/group management, and access levels for robust security.
Getting Started With Authentication And Authorization Using Blazor Server Side
5/3/2024 11:43:27 AM.
Learn how to implement secure user authentication and authorization in Blazor Server applications. Explore Blazor's built-in authentication mechanisms using .NET Core Identity. Manage user roles,
Session Management In ASP.NET Web API
5/1/2024 5:42:33 AM.
Session Management in ASP.NET Web API involves handling user sessions, state, and security. It encompasses implementing authentication, authorization, and token-based security to manage user sessions
OpenID Connect Availability in OWIN Security Components
4/30/2024 9:51:18 AM.
Discover the integration of OpenID Connect with OWIN security components for robust authentication and authorization in .NET applications. Enhance identity management and security with seamless integr
Introducing Various Authentication Options in Visual Studio
4/30/2024 9:38:28 AM.
Introducing Various Authentication Options in Visual Studio 2013" explores the range of authentication methods available in the IDE. Discover how to implement secure user identity with OAuth, Ope
.NET Core : Implementing Authentication & Authorization in .NET Core Apps
4/30/2024 3:40:13 AM.
This article provides a structured guide with code snippets and references for implementing authentication and authorization in .NET Core applications. It covers mechanisms such as Identity framework,
Learn About Filters In ASP.NET MVC
4/23/2024 10:02:02 AM.
In this article, you will Explore the essence of ASP.NET MVC filters in this comprehensive guide. Understand how action, result, authorization, and exception filters enhance your web applications.
Keeping Your .NET Core API Safe and Sound
4/19/2024 4:57:22 AM.
In today's digital landscape, where data is king and APIs (Application Programming Interfaces) reign supreme, ensuring the security of your API in .NET Core is paramount. In this article, we delve
Make Your Debugging Easier With 'Login As' Design Pattern
4/18/2024 1:16:39 PM.
Streamline debugging with the 'Login As' design pattern, enabling authorized users to temporarily access accounts for testing purposes. Enhance development efficiency and ensure thorough testi
How To Get Started With The Radzen Blazor Components
4/18/2024 9:57:19 AM.
When creating a Blazor Application (both Server and WebAssembly), by default it consists of the UI framework. But some projects might be need to deliver sooner or the time frame for a project is lesse
Enable Identity Core With Empty Template In ASP.NET MVC core 3.0
4/15/2024 11:48:04 AM.
Learn how to integrate Identity Core into an empty template in ASP.NET MVC Core 3.0. Explore authentication and authorization features, configure user management, and enhance security.
Best Practices for Maintaining Security and Preventing Vulnerabilities in C#
4/9/2024 5:54:03 PM.
Explore essential security practices in C# programming with Ziggy Rafiq, covering password hashing, input validation, SQL injection prevention, cryptography, HTTPS, secret management, and staying upda
How To Override Attribute Class To Do Custom Authorization In .NET Core
4/8/2024 11:48:35 AM.
In this article, Discover how to customize authorization behaviors using attribute classes, providing finer control over access to resources based on specific criteria such as user roles, permissions,
SQL Server: Grant Permission To A Particular Table
4/3/2024 10:47:46 AM.
In this article, we will learn how to manage database security in SQL Server by granting permissions to specific tables. Safeguard sensitive data and control access with precise authorization settings
Understanding Filters in MVC
3/29/2024 10:56:27 AM.
There are situations in which we have an implementation that will be reused in many places that is not confined to a single place or method. This is fulfilled by the Filters in MVC. Let's discuss
Dynamic Redirect URL/ Wildcard URL in Azure App Registration
3/15/2024 8:28:39 AM.
Learn how to configure dynamic redirect URLs or wildcard URLs in Azure App Registration for enhanced flexibility and scalability. By leveraging this feature, you can dynamically handle various callbac
Validate Multiple Tokens with Different Providers in ASP.NET 8 API
3/15/2024 5:47:48 AM.
Learn to validate multiple tokens from different authentication providers in an ASP.NET 8 API. Configure authentication schemes for each provider, accommodating diverse token formats and validation re
Provide Security Role Access for D365 Outlook
3/14/2024 7:00:05 AM.
In this article, we will customize permissions, manage user access, and enforce Role-Based Access Control (RBAC). Optimize Microsoft 365 settings to tailor access rights, enhancing data protection and
Third-party API Integration in Asp.NET Core Web API
2/20/2024 6:21:52 AM.
ASP.NET Core is a powerful framework for building web APIs, allowing developers to create robust and scalable applications. One of the key features of modern web development is the integration of thir
Securing Your .NET Projects: Simple Strategies and Real Examples
2/18/2024 4:46:27 AM.
In today's digital world, keeping our software safe from cyber threats is super important. For developers working with .NET projects, it's not just a good idea but really necessary to make sur
Understanding Workflow Of OAuth2.0 Authorization Grant Types
2/16/2024 6:28:57 AM.
In this article, you will learn about the workflow Of OAuth 2.0 Authorization Grant Types and define the workflow for obtaining access tokens, crucial for securing API access.
Exploring Filters in .NET Core
1/17/2024 10:31:18 AM.
.NET Core's flexibility and extensibility are enhanced by filters, allowing developers to inject logic into the request processing pipeline. Types like Authorization, Action, Result, and Exception
Understanding Google OAuth (Open Authorization)
1/5/2024 10:04:11 AM.
Google OAuth, an Open Authorization protocol ensuring secure third-party access to user data without exposing credentials. Follow a step-by-step guide to configure OAuth 2.0 credentials via the Google
ValidateAntiForgeryToken in ASP.NET Core
12/13/2023 6:17:03 AM.
In web development, security is a crucial aspect that demands meticulous attention. Cross-Site Request Forgery (CSRF) is a type of attack where unauthorized commands are transmitted from a user truste
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
Identity API Endpoints based Authentication and Authorization in .NET 8
11/15/2023 12:10:49 PM.
The second step in adding token-based authentication to ASP.NET Core Identity is to introduce the Identity API endpoints. Basically, this is an API version of the actions that you can perform with ASP
New feature for Authentication and Authorization in .NET 8
11/15/2023 10:44:06 AM.
Let's check out the cool new things that .NET 8 has added to help you keep your apps secure.
ASP.NET MVC - OAuth 2.0 REST Web API Authorization Using Database First Approach
10/25/2023 10:29:33 AM.
This article is about OAuth 2.0 authorization scheme integration with ASP.NET MVC REST Web API.
JWT Authentication And Authorization In .NET 6.0 With Identity Framework
10/19/2023 5:14:08 AM.
In this post, we will be discussing the JWT authentication and authorization using Identity framework in .NET 6.0
SAML Authentication
10/16/2023 6:41:29 AM.
Understanding SAML Authentication: How It Works and Its Role in Modern Security
Action Filters in ASP.NET Core
10/13/2023 8:10:05 AM.
This article provides a comprehensive overview of Action Filters in ASP.NET Core, exploring their types.
Building a Microservices API Gateway with YARP in ASP.NET Core Web API
10/3/2023 6:29:13 AM.
Building a microservices API Gateway with YARP in ASP.NET Core Web API provides a flexible and scalable solution for managing and routing traffic in a microservices architecture. By incorporating feat
Task Management API with GraphQL in ASP.NET Core
9/22/2023 8:16:12 AM.
Creating a complete CRUD (Create, Read, Update, Delete) operation using GraphQL in an ASP.NET Core Web API can be quite extensive, so I'll provide you with a simplified example using a "Task
Authentication And Authorization In ASP.NET Core Web API With JSON Web Tokens
9/22/2023 7:21:46 AM.
In this post, we will see how to create JWT authentication in ASP.NET Core Web API application. We will store the user credentials in SQL server database. We will use Entity framework code first appro
Advanced Sorting and Searching in ASP.NET Core Web API
9/15/2023 6:48:58 AM.
Sorting and searching are essential functionalities in many ASP.NET Core Web API applications. To implement advanced sorting and searching in your API, you can follow these steps:
Efficient PDF Generation in ASP.NET Core Web API Using DinkToPdf
9/9/2023 12:14:09 PM.
Generating PDF files in an ASP.NET Core Web API is a common requirement, and there are several libraries available to help with this task. In this example, I'll show you how to generate PDF files
Securing ASP.NET Core Web API with JWT Authentication and Role-Based Authorization
9/9/2023 12:02:42 PM.
Securing APIs in an ASP.NET Core Web API involves implementing authentication and authorization mechanisms to protect your resources and ensure that only authorized users can access them. In this exam
Mastering Dependency Injection and Third-Party IoC Integration
8/29/2023 8:59:26 AM.
Dependency Injection (DI) is a design pattern used in software development to achieve loosely coupled components by allowing the injection of dependencies into a class rather than creating them within
Web Application Enhancement: Action Filters for Cross-Cutting Concerns
8/28/2023 6:14:23 AM.
Action filters are an integral part of many modern web frameworks, including ASP.NET MVC, ASP.NET Core, and others. They allow you to intercept and modify the request and response pipeline for an appl
Enhancing Security and Access Management with Microsoft Entra
8/24/2023 7:02:57 AM.
Unveiling Microsoft Entra: Elevating Secure Identity and Access Management" is a resource that likely introduces and explores Microsoft Entra, a solution focused on enhancing identity and access
Building Custom Middleware Components for Logging, Error Handling, and Request/Response Modification
8/9/2023 5:05:33 AM.
ASP.NET Core to handle cross-cutting concerns like logging, error handling, and request/response modification:
Building a Secure .NET Core Web API for Azure AD Integration with SharePoint Online SPFx
8/5/2023 10:24:51 AM.
Learn how to build a secure .NET Core Web API integrated with Azure AD for seamless authentication and authorization with SharePoint Online SPFx web parts. Enhance your application's security and
Token based Authentication and Authorization Grants Explained
8/2/2023 5:37:02 AM.
In this article, let us learn about what is a token based authentication and the different authorization grants used in modern day applications
Google OAuth 2.0 Authorization In Azure API
7/27/2023 8:35:17 AM.
Here, I am going to demonstrate how can we use Google OAuth 2.0 in Azure API. App Service Authentication/Authorization is exposed in the Azure Preview Management Portal.
Client Credentials Flow - Call Web API to API without user interaction
7/18/2023 6:21:20 AM.
This article shows the way to call API to API with user interaction by using Client Credentials Flow.
How To Add Authentication In ASP.NET Core 6 MVC Project Using Identity?
7/11/2023 7:26:52 AM.
In this article, We will be learning how to add authentication in ASP.NET 6 Using Identity service.
Authentication And Authorization In Angular - Part Twelve
5/30/2023 11:19:04 AM.
Before we get into the mechanics of implementing Authentication and Authorization, let’s have a quick look at high level architecture. So let’s start with Authentication. So in order to build authenti
Policy-Based Authorization in .NET Core API: User, Groups, and Permissions
5/30/2023 5:33:17 AM.
To create users, groups, and manage permissions using policy-based authorization in a .NET Core API
Admin Consent Flow For Microsoft Graph PowerShell Module
9/26/2022 5:03:43 AM.
In this article, let’s try to understand basic identity flows involved in Graph PowerShell module and admin consent to interact with Graph PowerShell.
JWT Token Creation, Authentication And Authorization In ASP.NET Core 6.0 With Postman
9/5/2022 6:09:42 AM.
In this article, you will learn about JWT Token Creation, Authentication and Authorization in ASP.NET Core 6.0 with Postman.
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
How To Use The Identity Framework With Refresh Token Validations
4/4/2022 3:36:33 PM.
.Net Core JWT Authentication and Authorization Continues with Identity Framework and refreshes Token Validations in Net Core 6
Authentication In Smart TV App - Device Code Flow
3/30/2022 12:57:14 PM.
Device Authorization flow has become common in applications running on devices like Smart TVs, game consoles, and printers needs authentication. These devices or operating systems don't provide a
JWT Authentication With Refresh Tokens In .NET 6.0
2/7/2022 4:07:00 PM.
In this post, we will see how to use refresh token with JWT authentication to secure .NET 6.0 applications.
JWT Token Authentication And Authorizations In .Net Core 6.0 Web API
12/21/2021 5:44:40 AM.
In this article, you will learn about Jwt Token Authentication and Authorizations in .Net Core 6.0 WEB API.
How To Add JWT Bearer Token Authorization Functionality In Swagger?
11/30/2021 7:04:16 AM.
In this article, you will learn how to add JWT Bearer Token Authorization Functionality in Swagger?
Authentication And Authorization In ASP.NET Core 2.0 Using Azure Active Directory And OpenID Connect
10/13/2021 12:24:57 AM.
This article mainly covers how to setup and configure Azure AD tenant and integrating Azure AD into asp.net core 2.0 web app for authentication and role base authorization.
Custom Authentication With ASP.NET MVC
8/17/2021 10:57:27 AM.
In this article, we will demonstrate how we can build authentication system using ASP.NET MVC
Create And Validate JWT Token In .NET 5.0
7/13/2021 3:03:18 PM.
In this article, you will learn how to create and validate JWT tokens in .Net 5.0.
Authentication (1) - Windows Authentication
5/31/2021 3:49:52 AM.
In this article, you will learn how to setup Windows Authentication.
🔐 Enable OAuth 2 Authorization Using Azure AD And Swagger In .Net 5.0
5/12/2021 3:23:14 AM.
In this article, you will learn how to enable OAuth 2 Authorization using Azure AD and Swagger in .Net 5.0.
Forms Authentication (C), Using Database With Filter
5/3/2021 5:06:34 AM.
This article discuss Forms Authentication using Database with MVC Filter
Role Based Authorization in ASP.Net
3/3/2021 6:44:32 AM.
In this article, you will learn how to do role based authorization in ASP.NET.
Google OAuth Authorization Using REST API
2/26/2021 3:29:48 PM.
In this article, I'm going to explain how to authorize using Google OAuth API.