Posts

Showing posts from November, 2018

Working with Azure B2C Single Sign On in Asp.net core website

Image
When we want to use Azure B2C on our website for authentication first we need to create a tenant for that. It is a unique url which identifies your app and your login process will be redirected to that tenant url. For example, if we don't user Azure B2C,  when we click on login button generally we see user name and password fields on the page. After entering the user name and password will be validated against our database. If they are correct then we allow them to access other pages on the website. But when use Azure B2C, the moment user clicks on login button they will be redirected to a page where the entered credentials will be validated against azure active directory. Then link for login button will be tenant url. To add Azure B2C authentication to your web site follow the below steps. Step #1:  Login to azure portal  and create a Tenant. Step#2:  After creating tenant we need to create an application. This application comes with a key. By...