daycg
daycg

Reputation: 9

Microsoft Graph - Azure AD Information

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

Answers (1)

DerOta
DerOta

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

Related Questions