Authenticate Graph API Using Power Automate - Part 1 (Configure application access in azure active directory)
In order to use Graph API, we need to first set up authentication. Graph API only supports below methods of authentication: Permission type Permissions (from least to most privileged) Delegated (work or school account) Group.ReadWrite.All Graph API authentication is enabled through Azure Active Directory. Here are the steps: 1. Go to : https://portal.azure.com/ 2. Click " App Registrations" > "New Registration" 3. Give a name to the new app, select the relevant account type and click "Register" Once the app is provisioned, you will be able to see the App ID, TenantID, ObjectID and other specific fields for the Azure App. Now we need to create a client secret for this app. Click on "Certificates and secrets". Enter the name for your client secret and set expiration as n...