Five Gotchas while using MSAL with Azure AD
I have created few demo applications by following Microsoft Documentation and published blog articles as well. While working on those demo applications, I faced some difficulties. Many of the issues…
I have created few demo applications by following Microsoft Documentation and published blog articles as well. While working on those demo applications, I faced some difficulties. Many of the issues…
Azure App Service provides very convenient way to publish your web application on internet. You can directly publish the web application from Visual Studio publish. Azure App Services also provide…
Azure AD B2C can support variety of identity providers, which can authenticate users. Suppose you have Angular application which calls the Web APIs and both are protected using Azure AD…
Azure AD B2C can be used for authenticating the user identity. Azure AD B2C has concept of identity providers. The identity providers are used for validating the user identities. Azure…
I am trying to go through the features available in Azure AD B2C. In this article, let's try to see how multi factor authentication can be enabled. Prerequisites For following…
Recently, I was trying to publish a Single Page Application to Azure App Service and I encountered an error. So, let's have a look at what that error was and…
In previous articles, we have seen capabilities of Azure AD B2C and how to use those in our applications using MSAL. In this article let's try to implement the scenario,…
In this article, let's have a look at how .NET Core Angular Web Application can be protected using Azure AD B2C. What we need? For following all steps in this…
Azure AD B2C can be used for consumer applications where any user can signup for the application and use the functionality. These users can also view their profile, update it…
Azure Active Directory is Azure's identity and access management service. It can be used for authenticating and authorizing users to ensure that only allowed users are able to access the…
In the previous blog post, we have seen how can we use MSAL.NET with .NET Core web applications. Many applications use Single Page applications as front end which call web…
Real world applications are composed of multiple components. Each component may itself be an application. For example, a web app may call another application which exposes only Web APIs. In…