Posts

Showing posts from March, 2023

What are the Identity Providers in Azure Ad B2C?

Image
 Hello Readers, Welcome to my 3rd blog on  "Azure AD B2C"  series. In the first 2 parts we have seen how to create Azure AD B2C Tenant step by step and how to use it with .net core application. If you haven't checked it yet then you can check  Part-1  -  Part-2 . So, Today we will look into the " Identity Providers " that azure ad b2c provides. In today's digital world, online security is more important than ever. As more and more applications are moving to the cloud, businesses need to ensure their users' identities are verified and protected. This is where identity providers (IDPs) come in. An identity provider is a service that verifies the identity of a user, and then provides that user with a secure way to access an application or service. In Azure AD B2C, there are several different types of identity providers available to help you achieve this. What is Azure AD B2C? Before we dive into identity providers in Azure AD B2C, let's first briefly di...

Integrate Azure AD B2C With .Net Core Application

Image
 Hello Readers, Welcome to my second blog on  "Azure AD B2C"  series. In the first part we have seen how to create Azure AD B2C Tenant step by step. If you haven't checked it yet then you can check it  here . Today we will look into how we can integrate B2C tenant in our .net core application. We will also see what are the benefits of using B2C.  Azure AD B2C is a cloud-based identity management service that enables you to secure and manage the identity of your customers and employees. The Azure AD B2C local account provider allows you to use a local account store instead of an external identity provider. In this blog, we will explore how to use the Azure AD B2C local account provider with a .NET Core application. Step 1 : Create an Azure AD B2C tenant To get started, you need to have an Azure AD B2C tenant. If you do not already have one, you can check my first blog  here  where I have explained every thing in detail . Step 2 : Create an application i...