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…
Few months back, I wrote few articles about how to secure the Web APIs using different mechanisms. The focus of those articles were mostly on the authentication aspects. If you…
I already have covered how to authenticate users in WPF application, using Azure AD B2C and MSAL. The most annoying part to me in that implementation was - the sign…
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…
In this article, let's try to setup authentication in .NET Core WPF application. Let's use Azure AD and MSAL for this setup. I promise there are going to be some…
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…
In this article, let's see how can we secure a .NET Core web application (Razor or MVC) with Azure AD. Please note that you will need Azure subscription to follow the steps…
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…
Now a days, all the functionalities available in your business applications are required to be available everywhere. Everybody wants the application to be available at their finger tips. Your customers…
In last article, we have seen how to add ASP .NET Core identity to your web API project. In this blog post, let's see how to setup your web API…
Now a days, many applications use third party authentication services. There are various providers which can help you to authenticate and authorize the users. The providers include Microsoft, Facebook, Twitter,…