Posts

Showing posts from October 6, 2023

How to Authenticating a client Application

Image
 Authenticating a Client Applications We can create multiple types of apps in AAD, Here we will discuss two kinds of Applications that are separated and supported in Microsoft AAD for Dynamics 365. 1. Native Client Application: This required a redirect URL, which Azure AD user to return a token response. This flow user a username and password for authentication and authorization. 2. Web App/ API: A confidential is an application that can keep a client's password confidential to the world. It uses a client APP ID and a client secret key to prepare client credentials.  Step1: Register Your Application in Azure AD (Active Directory) : Sign in to your Azure portal. Navigate to Azure Active Directory. Go to "App registrations" and register your native client application. Note down the Application ID (Client ID) generated for your app. Configure the Redirect URI to which the authentication response should be sent. It should match the URI you specify in your app. Step2: Configu...