Toshihiro Arai
Toshihiro Arai

Reputation: 3

How to add permission of AzureDatabrick in Azure AD

I'm doing this tutorial. https://learn.microsoft.com/ja-jp/azure/databricks/dev-tools/api/latest/aad/app-aad-token#use-an-azure-ad-access-token-to-access-the-databricks-rest-api

I followed the instruction and try to find AzureDatabricks in the Request API permissions page. But no results were found.

enter image description here

I'm sure that I'm an admin. Any help?

Upvotes: 0

Views: 843

Answers (1)

Joy Wang
Joy Wang

Reputation: 42133

To solve the issue, please follow the steps below.

1.Install the Azure AD powershell module in local.

Install-Module AzureAD

2.Then use Connect-AzureAD to login your admin account and run the command below.

Note: Don't modify the GUID 2ff814a6-3304-4ab8-85cb-cd0e6f879c1d.

New-AzureADServicePrincipal -AppId "2ff814a6-3304-4ab8-85cb-cd0e6f879c1d"

enter image description here

3.Refresh the portal and navigate to the API permissions of your client app and add the permission, the AzureDatabricks will appear.

enter image description here

Upvotes: 1

Related Questions