Insufficient privileges to complete the operation when using service principal to create Azure AD Application

后端 未结 1 1443
情书的邮戳
情书的邮戳 2021-01-06 22:30

Following the code outlined here:

https://github.com/Azure-Samples/active-directory-dotnet-graphapi-console/blob/master/GraphConsoleAppV3/Program.cs#L810


        
相关标签:
1条回答
  • 2021-01-06 22:57

    its required that the application has been given the Administrator role that currently seem only possible to add using the powershell tools for azure AD: https://msdn.microsoft.com/library/azure/jj151815.aspx#bkmk_installmodule

    and using connect-msolservice and using your Azure Ad Administrator user login when prompted.

    1. connect-msolservice
    2. Get-MsolServicePrincipal –AppPrincipalId {appId}
    3. Add-MsolRoleMember -RoleMemberType ServicePrincipal -RoleName 'Company Administrator' -RoleMemberObjectId {objectID}

    where the objectID is the output of the 2 command

    0 讨论(0)
提交回复
热议问题