I'm trying to export all applications configurations. To do that I used the following commands :
Get-AzureADApplication ; Get-AzureADServicePrincipal ; Get-MgApplication ; Get-MgServicePrincipal.
With those, I get almost everything, but important information are missing :
- When a SAML App has several IdentifierUris or ReplyUrls, I only get the list, not the one that is marked as "primary" in the Azure Portal (see here)
- For OAuth Applications, I'm able to know is the app uses SPA, Native or Web Redirect Uris and if the app uses the Implicit Flow. But how would I know if the app uses Client Credentials (OAuth Services), or Authorization Code with PKCE ?
- For SAML Applications, I'm trying to retrieve the Claims & Attributes. When they are applied to the app with a "Claim mapping Policy", I'm able to do so. But when they are changed directly in the Azure Portal (see above), I do not retrieve that information :
Changing Attributes & Claims in the Azure Portal
Thanks for considering my request.