Get all appRoles on an Azure AD App Registration in ASP.NET
In my ASP.NET MVC Core project, I want all the AppRoles that are set up in the App Registration as a list to display in my view. Currently I have attempted the following: var servicePrincipal = await _graphServiceClient.Applications[_configuration["AzureAd:AppRegistrationId"]] .Request() .Select("appRoles")…