Reputation: 9
I need to get the Tenant ID, Client ID and Cliente Secret of an Azure Active Directory, is it possible to do it using Microsoft Graph?
Upvotes: 0
Views: 102
Reputation: 157
You can get the TenantId from the home page of "Azure Active Directory" that you can find in the search on portal.azure.com
However Client Ids and Client Secrets are App Registration specific and define permissions your app can acquire when useing said credentials.
I suggest you read the Microsoft docs on that topic: https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app https://learn.microsoft.com/en-us/graph/auth/auth-concepts
Upvotes: 1