Authenticated Calls with Microsoft Teams
Prerequisites
Requirements
1
Azure Communication Services service principal
🔍︎ Check if the Azure Communication Services service principal is installed



✅ Installing the Azure Communication Services service principal
Step 1. Open PowerShell

Step 2. Install the Microsoft Graph module (if not already installed)
Install-Module Microsoft.Graph -Scope CurrentUserStep 3. Connect to your tenant
Connect-MgGraph -TenantId "TENANT_ID" -Scopes "Application.ReadWrite.All"Step 4. Create the Azure Communication Services service principal
New-AzureADServicePrincipal -AppId "1fd5118e-2576-4263-8130-9503064c837a"(Optional) Using Azure CLI instead
az login --tenant TENANT_ID
az ad sp create --id 1fd5118e-2576-4263-8130-9503064c837aSetup scenarios

When authentication is not configured
Last updated
Was this helpful?

