4
我正在嘗試使用Azure資源管理器.Net庫編寫獨立程序來訪問Azure資源組詳細信息。按照文檔要求,每個資源管理器請求中都需要Azure AD身份驗證和令牌。所以我在AD中創建了一個Web應用程序並配置了密鑰並使用它來生成令牌。Azure資源管理器.Net API無法獲取資源組
但下面的代碼失敗,即使我通過這個令牌作爲承載的請求。
m_resourceClient = new ResourceManagementClient(connection.GetCredentials());
m_resourceClient.HttpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("bearer", connection.GetAccessToken());
***ResourceGroupGetResult resourceGroupList = m_resourceClient.ResourceGroups.Get("PraveenTest")*** ;
錯誤消息:
AuthorizationFailed: The client '5919f7f9-####-####-####-074456eba98c' with object id '5919f7f9-####-####-####-074456eba98c' does not have authorization to perform action
'Microsoft.Resources/subscriptions/resourcegroups/read' over scope '/subscriptions/1f94c869-####-####-####-055e8ae15be3/resourcegroups/TestGroup'.
非常感謝BenV。我是Azure的新手。你的建議已經解決了這個問題。 – pravn757
我試過這個,但是當我執行這個命令時,我在提示中又遇到了同樣的錯誤。 – Anand
更新:在MS Azure Powershell版本1.0.1中,新AzureRoleAssignment現在是新AzureRmRoleAssignment – hcg