Azure AD B2C and Custom Web UI for .NET Core WPF App
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…
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…
In this article, let's have look at how a .NET Core WPF application can be protected using Azure AD B2C and how can it call the APIs which are also…
In this article, let's have a look at how to enable authentication in .NET Core WPF application. Prerequisites For following all steps in this article, we will need Azure Subscription.…
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…
In past few articles, we have seen how to setup applications which calls web APIs. In most of those posts, we have used Delegated permissions, meaning, the API would be…
When an application is configured to use Azure AD B2C for authentication, the application shows sign in and sign up pages. The contents of these pages are obvious subjected to…
In last article, we have seen how to setup the federation between Google and Azure AD B2B. In this article, let's have a look at how to setup federation with…
Azure AD B2B is used as identity and access management service which is meant for enterprise application. The enterprise applications are generally targeted to users in an organization. All these…
Many organizations are now moving to Microservices and APIs calling other APIs is very common in Microservices architecture. In this article, let's see how a secured API can call another…
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 look at some details about scopes and consents and how they can be used to authorize the requests to the resources. What are Scopes? Microsoft…