Refresh tokens with .NET 5 Web API and .NET Core Identity
This blog post is continuation of my previous post. In the previous post, I tried to discuss about what is refresh token, why it is required and generally how it…
This blog post is continuation of my previous post. In the previous post, I tried to discuss about what is refresh token, why it is required and generally how it…
Let's consider a scenario where a public client application needs to call a web API. Both of the applications are owned by you. And suppose, we want both of them…
While interacting with Azure AD, applications receive ID tokens after authenticating the users. The applications use access tokens and refresh tokens while interacting with APIs. All these tokens are Json…
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…
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…
In this article, we will use Azure AD to secure the Web API. We are going to use MSAL for this demonstration. MSAL stands for Microsoft Authentication Library. Please note…