I am trying to create a asp.net core based solution using the Azure Resource Manager API libraries to manage resources on a single subscription.
When I try to authenticate using an subscription co-administrator account I receive permissions errors. Below is the steps I have tried.
Created a project based on following examples: https://github.com/pratapbhaskar/azure-resource-manager-active-directory https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-api-authentication
In management portal:
- Created active directory app entry.
 - Set AD app entry Multi-tenanted to True.
 - Give AD app entry Azure Active Directory read profile permissions.
 
Tried logging in to application using subscription co-admin account and received the following error:
AADSTS65005: The client application has requested access to resource 'https://management.core.windows.net/'. This request has failed because the client has not specified this resource in its requiredResourceAccess list.
Attempted fix:
- Open AD app and add permissions for: "Windows Azure Service Management API"
 - Add delegated permissions "Access Azure Service Management as organization users (preview)"
 
Tried logging in to application using subscription co-admin account and received the following error:
AADSTS90093: This application requires application permissions to another application. Consent for application permissions can only be performed by an administrator. Sign out and sign in as an administrator or contact one of your organization's administrators.
